From b5e8bda1c453d3ec855b405eaf75c9c251783bf0 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 29 Jan 2026 11:02:15 -0800 Subject: [PATCH] Fix network table in/out to be from node perspective Co-Authored-By: Claude Opus 4.5 --- static/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/index.html b/static/index.html index 8610087..bc3ea31 100644 --- a/static/index.html +++ b/static/index.html @@ -2522,10 +2522,10 @@ upstream, speed, speedStr, - inErrors: errors.in, - outErrors: errors.out, - inRate: rates.inBytes, - outRate: rates.outBytes, + inErrors: errors.out, + outErrors: errors.in, + inRate: rates.outBytes, + outRate: rates.inBytes, status: isUnreachable ? 'unreachable' : (errors.in + errors.out > 0 ? 'errors' : 'ok') }; });