From 2ff7c111af68bbaa3b7af0fa4a0c86bdbe5d550d Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 26 Oct 2025 11:49:13 +0100 Subject: [PATCH] Update network-metrics.tsx --- AppImage/components/network-metrics.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/AppImage/components/network-metrics.tsx b/AppImage/components/network-metrics.tsx index c3af53c..a825dca 100644 --- a/AppImage/components/network-metrics.tsx +++ b/AppImage/components/network-metrics.tsx @@ -846,6 +846,22 @@ export function NetworkMetrics() { {/* Network Traffic Statistics - Only show if interface is UP and NOT a VM interface */} {displayInterface.status.toLowerCase() === "up" && displayInterface.vm_type !== "vm" ? (
+

Traffic since last boot

+
+
+
Bytes Received
+
+ {formatBytes(displayInterface.bytes_recv)} +
+
+
+
Bytes Sent
+
+ {formatBytes(displayInterface.bytes_sent)} +
+
+
+

Network Traffic Statistics ( {modalTimeframe === "hour"