- client: convert average processing time to milliseconds

This commit is contained in:
Ildar Kamalov
2019-09-03 11:03:47 +03:00
parent 63049e0521
commit 17a26155cd
3 changed files with 11 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ const Counters = (props) => {
</td>
<td className="text-right">
<span className="text-muted">
{avgProcessingTime ? `${round(avgProcessingTime, 2)} ms` : 0}
{avgProcessingTime ? `${round(avgProcessingTime)} ms` : 0}
</span>
</td>
</tr>