From bb3492c5f236944145f65b0ad72d66ec21951efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BAben=20Silva?= <rubensilva945@gmail.com> Date: Sat, 20 Aug 2022 14:41:38 +0100 Subject: [PATCH] fix #856 lint Revert "lint" This reverts commit 936e5e1cc0e85fe785a97d55bd1dd1df39b55a28. lint --- src/components/Widgets/Clock.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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, }); }, },