From 80e9a471c3a0058f022c5ef5a4bbd1883711f7c5 Mon Sep 17 00:00:00 2001 From: osiu97 Date: Wed, 8 Jul 2026 19:41:15 +0200 Subject: [PATCH] allow manual disconnection --- web/js/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/ui.js b/web/js/ui.js index eaa5b6e..95067b7 100644 --- a/web/js/ui.js +++ b/web/js/ui.js @@ -45,7 +45,7 @@ const UI = (() => { ? (deviceName ?? 'Connected') : 'Disconnected'; if (btn) { - btn.disabled = connected; + btn.disabled = false; btn.innerHTML = connected ? 'Disconnect' : 'Connect';