From 3e3bc0e8571752cd629c7915eff75661d540a030 Mon Sep 17 00:00:00 2001 From: Smittix Date: Tue, 20 Jan 2026 23:47:26 +0000 Subject: [PATCH] Hide status bar in TSCM mode Co-Authored-By: Claude Opus 4.5 --- static/js/core/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/core/app.js b/static/js/core/app.js index 364879c..d4ac23c 100644 --- a/static/js/core/app.js +++ b/static/js/core/app.js @@ -201,7 +201,7 @@ function switchMode(mode) { (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'; + document.querySelector('.status-bar').style.display = (mode === 'satellite' || mode === 'tscm') ? 'none' : 'flex'; // Load interfaces and initialize visualizations when switching modes if (mode === 'wifi') {