From 29c9ded5b7113c84641f98701db37c289a5ffcaa Mon Sep 17 00:00:00 2001 From: Massedil Date: Wed, 6 Nov 2024 18:37:59 +0100 Subject: [PATCH] Issue #1511: Date display problem : If an event do not have a time zone, use the user's setting time zone for display or the browser time zone otherwise --- src/components/Event/EventFullDate.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Event/EventFullDate.vue b/src/components/Event/EventFullDate.vue index 74494df8f..1faacc7d9 100644 --- a/src/components/Event/EventFullDate.vue +++ b/src/components/Event/EventFullDate.vue @@ -117,7 +117,7 @@ const showLocalTimezone = ref(true); const timezoneToShow = computed((): string | undefined => { if (showLocalTimezone.value) { - return props.timezone; + return props.timezone ?? userActualTimezone.value; } return userActualTimezone.value; });