diff --git a/src/components/Widgets/Clock.vue b/src/components/Widgets/Clock.vue index 717bad62..948a5f68 100644 --- a/src/components/Widgets/Clock.vue +++ b/src/components/Widgets/Clock.vue @@ -57,7 +57,11 @@ export default { /* Get and format the date */ setDate() { this.date = new Date().toLocaleDateString(this.timeFormat, { - weekday: 'long', day: 'numeric', year: 'numeric', month: 'short', + weekday: 'long', + day: 'numeric', + year: 'numeric', + month: 'short', + timeZone: this.timeZone, }); }, },