mirror of
https://github.com/pi-hole/web.git
synced 2026-04-23 18:29:43 +01:00
Fix multiplier (reply_time field unit is second)
Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user