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:
parent
cffc1d6563
commit
2dd0e13eba
|
@ -426,7 +426,9 @@
|
||||||
>
|
>
|
||||||
<option
|
<option
|
||||||
v-for="timezone in groupTimezones"
|
v-for="timezone in groupTimezones"
|
||||||
:value="`${group}/${timezone}`"
|
:value="
|
||||||
|
group === t('Other') ? timezone : `${group}/${timezone}`
|
||||||
|
"
|
||||||
:key="timezone"
|
:key="timezone"
|
||||||
>
|
>
|
||||||
{{ sanitizeTimezone(timezone) }}
|
{{ sanitizeTimezone(timezone) }}
|
||||||
|
|
Loading…
Reference in a new issue