From 168b2c4b120bc49f9983f2cedd0a6821e5aa0649 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Wed, 19 Nov 2025 10:58:51 +0100 Subject: [PATCH] device state setting fix 11 --- apps/ui/templates/device.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/ui/templates/device.html b/apps/ui/templates/device.html index b7f8a96..1baaafe 100644 --- a/apps/ui/templates/device.html +++ b/apps/ui/templates/device.html @@ -471,11 +471,11 @@ stateGrid.className = 'state-grid'; stateGrid.innerHTML = `
-
${deviceState.current_temp?.toFixed(1) || '--'}°C
+
${deviceState.current?.toFixed(1) || '--'}°C
Aktuell
-
${deviceState.target_temp?.toFixed(1) || '--'}°C
+
${deviceState.target?.toFixed(1) || '--'}°C
Ziel
`; @@ -488,8 +488,8 @@ sliderGroup.innerHTML = `
- -
${deviceState.target_temp?.toFixed(1) || '21.0'}°C
+ +
${deviceState.target?.toFixed(1) || '21.0'}°C
`; card.appendChild(sliderGroup);