From 139deb5467218a5487dbdff2f75580caa1f16199 Mon Sep 17 00:00:00 2001 From: gitomarcourt Date: Fri, 3 Jul 2026 18:59:52 +0200 Subject: [PATCH] ui: clearer magnet/vibration status labels - Magnet mode: 'No magnet nearby' / 'Magnet detected' (was None/Detected!) - Vibration mode: 'No vibration' / 'Vibration detected' (was Idle/Vibration!) Door mode stays as Closed/Opened/Opening/Closing since that matches how users think about doors specifically. --- dashboard/static/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/static/index.html b/dashboard/static/index.html index a4eeaf1..f267d12 100644 --- a/dashboard/static/index.html +++ b/dashboard/static/index.html @@ -195,8 +195,8 @@ const HUMAN = { closed: 'Closed', opened: 'Opened', opening_alert: 'Opening', closing_alert: 'Closing', }, - vibration_status: { no_vibration: 'Idle', vibration_detected: 'Vibration!' }, - magnet_status: { no_magnet: 'None', magnet_detected: 'Detected!' }, + vibration_status: { no_vibration: 'No vibration', vibration_detected: 'Vibration detected' }, + magnet_status: { no_magnet: 'No magnet nearby', magnet_detected: 'Magnet detected' }, }; function humanize(field, value) {