From 7608aca681edd509382b89f575e9847d808781ed Mon Sep 17 00:00:00 2001 From: Smittix Date: Thu, 8 Jan 2026 13:35:34 +0000 Subject: [PATCH] Hide waterfall canvas in WiFi mode 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 11ea6b4..476b782 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2390,7 +2390,7 @@ 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') ? 'none' : 'block'; + 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') ? 'none' : 'block'; document.querySelector('.status-bar').style.display = (mode === 'satellite') ? 'none' : 'flex';