From 12d80eb63b6f19da96342a3bd2a9feb848a4fdc0 Mon Sep 17 00:00:00 2001 From: gitomarcourt Date: Fri, 3 Jul 2026 18:11:33 +0200 Subject: [PATCH] ui: humidity as '%' instead of '% RH' --- dashboard/static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/static/index.html b/dashboard/static/index.html index ab28cb5..3d0a26f 100644 --- a/dashboard/static/index.html +++ b/dashboard/static/index.html @@ -119,7 +119,7 @@ function summaryLine(d) { if (!d) return '—'; const p = []; if ('temperature_c' in d) p.push(`${d.temperature_c}°C`); - if ('humidity_pct' in d) p.push(`${d.humidity_pct}% RH`); + if ('humidity_pct' in d) p.push(`${d.humidity_pct}%`); if ('brightness_lux' in d) p.push(`${d.brightness_lux} lux`); if ('door_status' in d) p.push(`door: ${d.door_status}`); if ('vibration_status' in d) p.push(`vibration: ${d.vibration_status}`);