fix(front): fix wrong value for timezone when it has no prefix

Closes #1275

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2023-06-05 08:28:04 +02:00
parent cffc1d6563
commit 2dd0e13eba
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 3 additions and 1 deletions

View File

@ -426,7 +426,9 @@
>
<option
v-for="timezone in groupTimezones"
:value="`${group}/${timezone}`"
:value="
group === t('Other') ? timezone : `${group}/${timezone}`
"
:key="timezone"
>
{{ sanitizeTimezone(timezone) }}