From 6a0b54fa0e156bb8a8c9fd9fa97dd5a9664166d9 Mon Sep 17 00:00:00 2001 From: Smittix Date: Tue, 17 Feb 2026 14:22:21 +0000 Subject: [PATCH] fix: Hide output console when switching to analytics mode The decoder output panel was not being hidden when entering analytics mode, causing it to render on top of the analytics dashboard. Co-Authored-By: Claude Opus 4.6 --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 6a97043..3493dd9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3911,7 +3911,7 @@ // Hide output console for modes with their own visualizations const outputEl = document.getElementById('output'); const statusBar = document.querySelector('.status-bar'); - if (outputEl) outputEl.style.display = (mode === 'satellite' || mode === 'sstv' || mode === 'weathersat' || mode === 'sstv_general' || mode === 'aprs' || mode === 'wifi' || mode === 'bluetooth' || mode === 'listening' || mode === 'tscm' || mode === 'spystations' || mode === 'meshtastic' || mode === 'dmr' || mode === 'websdr' || mode === 'subghz') ? 'none' : 'block'; + if (outputEl) outputEl.style.display = (mode === 'satellite' || mode === 'sstv' || mode === 'weathersat' || mode === 'sstv_general' || mode === 'aprs' || mode === 'wifi' || mode === 'bluetooth' || mode === 'listening' || mode === 'tscm' || mode === 'spystations' || mode === 'meshtastic' || mode === 'dmr' || mode === 'websdr' || mode === 'subghz' || mode === 'analytics') ? 'none' : 'block'; if (statusBar) statusBar.style.display = (mode === 'satellite' || mode === 'websdr' || mode === 'dmr' || mode === 'subghz') ? 'none' : 'flex'; // Restore sidebar when leaving Meshtastic mode (user may have collapsed it)