From 7eba7dbaaa15f522d30d33218a75deb1beee7d40 Mon Sep 17 00:00:00 2001 From: Smittix Date: Wed, 14 Jan 2026 19:22:50 +0000 Subject: [PATCH] Hide output console in TSCM mode Prevents pager and 433MHz sensor data from appearing in the TSCM section, which has its own dedicated dashboard panels. Co-Authored-By: Claude Opus 4.5 --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 8321793..10bb410 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3651,7 +3651,7 @@ document.getElementById('pagerWaterfallPanel').style.display = (mode === 'pager') ? 'block' : 'none'; // Sensor waterfall: show only for sensor (433MHz) mode document.getElementById('sensorWaterfallPanel').style.display = (mode === 'sensor') ? 'block' : 'none'; - document.getElementById('output').style.display = (mode === 'satellite' || mode === 'aircraft' || mode === 'aprs' || mode === 'wifi' || mode === 'bluetooth' || mode === 'listening') ? 'none' : 'block'; + document.getElementById('output').style.display = (mode === 'satellite' || mode === 'aircraft' || mode === 'aprs' || mode === 'wifi' || mode === 'bluetooth' || mode === 'listening' || mode === 'tscm') ? 'none' : 'block'; document.querySelector('.status-bar').style.display = (mode === 'satellite') ? 'none' : 'flex'; // Load interfaces and initialize visualizations when switching modes