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">
|
<h2 className="title">
|
||||||
{name} {latency ? (
|
{name} {latency ? (
|
||||||
<span className="latency">
|
<span className="latency">
|
||||||
{latency}ms
|
{Math.round(latency)}ms
|
||||||
</span>
|
</span>
|
||||||
) : null}
|
) : null}
|
||||||
</h2>
|
</h2>
|
||||||
|
|
Loading…
Reference in a new issue