From 3cd1b47fc522a62a8086c07449f5ab469546394d Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Wed, 26 Feb 2025 13:26:57 -0300 Subject: [PATCH] Update placeholder throughput display to -.-- Kbps --- templates/wireguard/wireguard_peer_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/wireguard/wireguard_peer_list.html b/templates/wireguard/wireguard_peer_list.html index 4588836..3702563 100644 --- a/templates/wireguard/wireguard_peer_list.html +++ b/templates/wireguard/wireguard_peer_list.html @@ -414,7 +414,7 @@ } } else { // First cycle: no previous measurement available. - formattedThroughput = ` 0.00 Kbps, 0.00 Kbps`; + formattedThroughput = ` -.-- Kbps, -.-- Kbps`; throughputElement.innerHTML = formattedThroughput; }