From bc4fd3e6f15c0cbe50316649695b0c6344ff6836 Mon Sep 17 00:00:00 2001 From: fraxle Date: Sun, 17 May 2026 08:43:42 +0100 Subject: [PATCH] 1.44 - Fix pulldown lables --- assets/js/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/js/app.js b/assets/js/app.js index f5d444c..f83466d 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -1324,7 +1324,6 @@ export function UTCIForecast() { ${profileButtonOrder.slice(0, 3).map((key) => { const profile = FILTER_PROFILES[key]; const locked = profile.proOnly && !isPro; - return html` `; })} + <${CustomSelect} key="activities" value=${activityValue} isOn=${activeProfile === 'farming' || (activeProfile === 'outdoors' && activityVariantKeys.includes(outdoorsVariant))} noHide=${true} hideLabel="🎯 Activities" - buttonLabel=${activityValue === 'off' ? '🎯 Activities' : `🎯 Activities: ${activityLabel}`} + buttonLabel=${activityValue === 'off' ? '🎯 Activities' : ` ${activityLabel}`} options=${activityOptions} onChange=${(v) => { if (v === 'off') { @@ -1376,7 +1376,7 @@ export function UTCIForecast() { isOn=${activeProfile === 'outdoors' && placeVariantKeys.includes(outdoorsVariant)} noHide=${true} hideLabel="🌤️ Places" - buttonLabel=${placeValue === 'off' ? '🌤️ Places' : `🌤️ Places: ${placeLabel}`} + buttonLabel=${placeValue === 'off' ? '🌤️ Places' : `${placeLabel}`} options=${placeOptions} onChange=${(v) => { if (v === 'off') {