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);