From 5ddf9bbc5309c13ca38b978491f62a7f1a94a30e Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Fri, 28 Nov 2025 08:46:50 +0100 Subject: [PATCH] garaga page 17 --- apps/ui/templates/garage.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/ui/templates/garage.html b/apps/ui/templates/garage.html index e8d939d..50de425 100644 --- a/apps/ui/templates/garage.html +++ b/apps/ui/templates/garage.html @@ -389,16 +389,16 @@ label.textContent = currentPower ? 'Ein' : 'Aus'; // Status display - const stateDisplay = document.createElement('div'); - stateDisplay.style.marginTop = '16px'; - stateDisplay.style.fontSize = '18px'; - stateDisplay.style.fontWeight = '600'; - stateDisplay.style.color = currentPower ? '#34c759' : '#666'; + // const stateDisplay = document.createElement('div'); + // stateDisplay.style.marginTop = '16px'; + // stateDisplay.style.fontSize = '18px'; + // stateDisplay.style.fontWeight = '600'; + // stateDisplay.style.color = currentPower ? '#34c759' : '#666'; // stateDisplay.textContent = `Status: ${currentPower ? 'Eingeschaltet' : 'Ausgeschaltet'}`; controlGroup.appendChild(toggleSwitch); controlGroup.appendChild(label); - controlGroup.appendChild(stateDisplay); + // controlGroup.appendChild(stateDisplay); container.appendChild(controlGroup); }