From 909e4fb76593598589efa099908009ac29d4f71c Mon Sep 17 00:00:00 2001
From: Steve <69524416+ab7pa@users.noreply.github.com>
Date: Mon, 26 Dec 2022 17:31:33 -0700
Subject: [PATCH] Display Charts button even when no RF links (#593)
* display charts button even if no RF links
* adjust spacing
---
files/www/cgi-bin/status | 1 +
1 file changed, 1 insertion(+)
diff --git a/files/www/cgi-bin/status b/files/www/cgi-bin/status
index 98ec28f1..70ab31a3 100755
--- a/files/www/cgi-bin/status
+++ b/files/www/cgi-bin/status
@@ -443,6 +443,7 @@ if config == "mesh" and not wifi_disabled then
local s, n = get_wifi_signal(wifi_iface)
if s == "none" then
col2[#col2] = col2[#col2] .. "no RF links"
+ col2[#col2] = col2[#col2] .. " "
else
col2[#col2] = col2[#col2] .. "" .. s .. " | " .. n .. " | " .. math.abs(s - n) .. " dB"
col2[#col2] = col2[#col2] .. " "