round off latency
This commit is contained in:
parent
f447994133
commit
50c479d6ea
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ const Service = ({ graph, name, status, latency, description }) => (
|
|||
<h2 className="title">
|
||||
{name} {latency ? (
|
||||
<span className="latency">
|
||||
{latency}ms
|
||||
{Math.round(latency)}ms
|
||||
</span>
|
||||
) : null}
|
||||
</h2>
|
||||
|
|
Loading…
Reference in a new issue