From f67831c8bd485e5fbdfbea32fcbe50d5a682e488 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Thu, 20 Nov 2025 22:13:01 +0100 Subject: [PATCH] fix --- apps/ui/templates/room.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ui/templates/room.html b/apps/ui/templates/room.html index 08790d0..68d270a 100644 --- a/apps/ui/templates/room.html +++ b/apps/ui/templates/room.html @@ -379,9 +379,9 @@ break; case 'thermostat': - if (state.current != null) { + if (state.target != null) { html = `
${state.target.toFixed(1)}°C
`; - if (state.target != null) { + if (state.current != null) { html += `
Ist: ${state.current}°C
`; } }