From d947ce17a391816bde5f4f406ca2d84aab65d212 Mon Sep 17 00:00:00 2001 From: Smittix Date: Thu, 8 Jan 2026 14:57:26 +0000 Subject: [PATCH] Hide waterfall and output console for Bluetooth mode Bluetooth mode now has its own dedicated layout with device cards, so the generic waterfall and output panels are hidden. Co-Authored-By: Claude Opus 4.5 --- templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index 2e1d9b1..5b6bdce 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2413,8 +2413,8 @@ document.getElementById('toolStatusAircraft').style.display = (mode === 'aircraft') ? 'grid' : 'none'; // Hide waterfall and output console for modes with their own visualizations - document.querySelector('.waterfall-container').style.display = (mode === 'satellite' || mode === 'listening' || mode === 'aircraft' || mode === 'wifi') ? 'none' : 'block'; - document.getElementById('output').style.display = (mode === 'satellite' || mode === 'aircraft' || mode === 'wifi') ? 'none' : 'block'; + document.querySelector('.waterfall-container').style.display = (mode === 'satellite' || mode === 'listening' || mode === 'aircraft' || mode === 'wifi' || mode === 'bluetooth') ? 'none' : 'block'; + document.getElementById('output').style.display = (mode === 'satellite' || mode === 'aircraft' || mode === 'wifi' || mode === 'bluetooth') ? 'none' : 'block'; document.querySelector('.status-bar').style.display = (mode === 'satellite') ? 'none' : 'flex'; // Load interfaces and initialize visualizations when switching modes