Fix multiplier (reply_time field unit is second)

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
RD WebDesign
2022-05-15 19:49:23 -03:00
parent 7fb8f94ea3
commit ba18ece9d8

View File

@@ -374,7 +374,7 @@ $(function () {
// Show response time only when reply is not N/A
if (data.length > 7 && replyid !== 0) {
$("td:eq(5)", row).append(" (" + (0.1 * data[7]).toFixed(1) + "ms)");
$("td:eq(5)", row).append(" (" + (1000 * data[7]).toFixed(1) + "ms)");
}
// Substitute domain by "." if empty