make timezone dropdown searchable

This commit is contained in:
Johannes Zellner
2025-05-16 18:43:03 +02:00
parent e04f3e317e
commit 55b0fb69ac
+1 -1
View File
@@ -75,7 +75,7 @@ onMounted(async () => {
<div v-html="$t('settings.timezone.description', { timeZone })"></div>
</FormGroup>
<div style="display: flex; gap: 6px; align-items: center;">
<SingleSelect style="min-width: 160px" v-model="timeZone" :options="allTimezones" option-key="id" option-label="id" @select="onTimeZoneChange" />
<SingleSelect style="min-width: 160px" v-model="timeZone" :searchThreshold="10" :options="allTimezones" option-key="id" option-label="id" @select="onTimeZoneChange" />
</div>
</SettingsItem>