Fix translations in the local settings

This commit is contained in:
Girish Ramakrishnan
2025-09-10 17:08:30 +02:00
parent 14907849cc
commit 38a2fdff39
2 changed files with 3 additions and 3 deletions

View File

@@ -86,7 +86,7 @@ onMounted(async () => {
<SettingsItem wrap>
<div>
<label>{{ $t('settings.timezone.title') }}</label>
<div v-html="$t('settings.timezone.description', { timeZone })"></div>
<div v-html="$t('settings.timezone.description')"></div>
</div>
<div style="display: flex; gap: 6px; align-items: center;">
<SingleSelect style="min-width: 160px" v-model="timeZone" :searchThreshold="10" :options="allTimezones" option-key="id" option-label="id" @select="onTimeZoneChange" />