From 068c17aad95460db921bf5c7c66aafa4ebee59d8 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sat, 15 Nov 2025 10:50:48 +0000 Subject: [PATCH] Change 'SSH Fallback' to 'Proxy (SSH)' in Capabilities column MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "SSH Fallback" label was confusing to users. Changed to "Proxy (SSH)" to make it clearer that the proxy is using SSH to collect temperature data from cluster nodes. This appears in the Capabilities column on Settings → Nodes when: - Temperature monitoring is enabled - Socket proxy is not available/healthy - HTTPS proxy is not available/reachable --- .../src/components/Settings/ConfiguredNodeTables.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend-modern/src/components/Settings/ConfiguredNodeTables.tsx b/frontend-modern/src/components/Settings/ConfiguredNodeTables.tsx index 37d1061..d3a71a9 100644 --- a/frontend-modern/src/components/Settings/ConfiguredNodeTables.tsx +++ b/frontend-modern/src/components/Settings/ConfiguredNodeTables.tsx @@ -105,7 +105,7 @@ const resolveTemperatureTransport = ( } return { - label: 'SSH fallback', + label: 'Proxy (SSH)', badgeClass: 'bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-300', }; };