From 90f43ff87e378ff340a3ca5c07b3af4aec99db0f Mon Sep 17 00:00:00 2001 From: Chris Frankland-Wright Date: Thu, 7 Aug 2025 23:34:16 +0100 Subject: [PATCH] fix: Correct icon map asset spellings Co-authored-by: aider (gemini/gemini-2.5-pro) --- static/icon-map.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/static/icon-map.js b/static/icon-map.js index ac37b21..1c544fd 100644 --- a/static/icon-map.js +++ b/static/icon-map.js @@ -1,25 +1,25 @@ // In this file, you can define the paths to your local icon image files. const iconMap = { ltcStatus: { - 'LOCK': 'assets/timeturner_ltc_green.png', - 'FREE': 'assets/timeturner_ltc_orange.png', - 'default': 'assets/timeturner_ltc_red.png' + 'LOCK': 'assets/timetuner_ltc_green.png', + 'FREE': 'assets/timetuner_ltc_orange.png', + 'default': 'assets/timetuner_ltc_red.png' }, ntpActive: { - true: 'assets/timeturner_ntp_green.png', - false: 'assets/timeturner_ntp_red.png' + true: 'assets/timetuner_ntp_green.png', + false: 'assets/timetuner_ntp_red.png' }, syncStatus: { - 'IN SYNC': 'assets/timeturner_sync_green.png', - 'CLOCK AHEAD': 'assets/timeturner_sync_orange.png', - 'CLOCK BEHIND': 'assets/timeturner_sync_orange.png', - 'TIMETURNING': 'assets/timeturner_timeturning.png', - 'default': 'assets/timeturner_sync_red.png' + 'IN SYNC': 'assets/timetuner_sync_green.png', + 'CLOCK AHEAD': 'assets/timetuner_sync_orange.png', + 'CLOCK BEHIND': 'assets/timetuner_sync_orange.png', + 'TIMETURNING': 'assets/timetuner_timeturning.png', + 'default': 'assets/timetuner_sync_red.png' }, jitterStatus: { - 'GOOD': 'assets/timeturner_jitter_green.png', - 'AVERAGE': 'assets/timeturner_jitter_orange.png', - 'BAD': 'assets/timeturner_jitter_red.png', - 'default': 'assets/timeturner_jitter_red.png' + 'GOOD': 'assets/timetuner_jitter_green.png', + 'AVERAGE': 'assets/timetuner_jitter_orange.png', + 'BAD': 'assets/timetuner_jitter_red.png', + 'default': 'assets/timetuner_jitter_red.png' } };