fix: Correct icon asset paths to 'timetuner' spelling

Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
Chris Frankland-Wright 2025-08-07 23:22:08 +01:00
parent cd922d5403
commit 08d664efd1

View file

@ -1,25 +1,25 @@
// In this file, you can define the paths to your local icon image files. // In this file, you can define the paths to your local icon image files.
const iconMap = { const iconMap = {
ltcStatus: { ltcStatus: {
'LOCK': 'assets/timeturner_ltc_green.png', 'LOCK': 'assets/timetuner_ltc_green.png',
'FREE': 'assets/timeturner_ltc_orange.png', 'FREE': 'assets/timetuner_ltc_orange.png',
'default': 'assets/timeturner_ltc_red.png' 'default': 'assets/timetuner_ltc_red.png'
}, },
ntpActive: { ntpActive: {
true: 'assets/timeturner_ntp_green.png', true: 'assets/timetuner_ntp_green.png',
false: 'assets/timeturner_ntp_red.png' false: 'assets/timetuner_ntp_red.png'
}, },
syncStatus: { syncStatus: {
'IN SYNC': 'assets/timeturner_sync_green.png', 'IN SYNC': 'assets/timetuner_sync_green.png',
'CLOCK AHEAD': 'assets/timeturner_sync_orange.png', 'CLOCK AHEAD': 'assets/timetuner_sync_orange.png',
'CLOCK BEHIND': 'assets/timeturner_sync_orange.png', 'CLOCK BEHIND': 'assets/timetuner_sync_orange.png',
'TIMETURNING': 'assets/timeturner_timeturning.png', 'TIMETURNING': 'assets/timetuner_timeturning.png',
'default': 'assets/timeturner_sync_red.png' 'default': 'assets/timetuner_sync_red.png'
}, },
jitterStatus: { jitterStatus: {
'GOOD': 'assets/timeturner_jitter_green.png', 'GOOD': 'assets/timetuner_jitter_green.png',
'AVERAGE': 'assets/timeturner_jitter_orange.png', 'AVERAGE': 'assets/timetuner_jitter_orange.png',
'BAD': 'assets/timeturner_jitter_red.png', 'BAD': 'assets/timetuner_jitter_red.png',
'default': 'assets/timeturner_jitter_red.png' 'default': 'assets/timetuner_jitter_red.png'
} }
}; };