round off latency

This commit is contained in:
slice 2018-07-13 19:39:44 -07:00
parent f447994133
commit 50c479d6ea
No known key found for this signature in database
GPG Key ID: 1508C19D7436A26D
1 changed files with 1 additions and 1 deletions

View File

@ -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>