From d812944d5ace7f750aba9c6bf61e8949e8eae05b Mon Sep 17 00:00:00 2001 From: Kroonk Date: Fri, 22 May 2026 17:51:56 +0200 Subject: [PATCH] UX: Auto-check writeToMonica if connected --- public/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app.js b/public/app.js index 5aa90d5..f43cef5 100644 --- a/public/app.js +++ b/public/app.js @@ -68,6 +68,7 @@ async function checkHealth() { ? `Monica verbunden: ${health.monicaBaseUrl}` : "Demo-Modus: Monica Token fehlt"; elements.writeToMonica.disabled = !health.monicaConfigured; + elements.writeToMonica.checked = health.monicaConfigured; } catch (error) { elements.apiStatus.textContent = "Backend nicht erreichbar"; log(error.message, "error");