From 96684f57c8444a164cf3ac2c1139d4792c14a0f2 Mon Sep 17 00:00:00 2001 From: Totto16 Date: Tue, 22 Nov 2022 10:58:14 +0100 Subject: [PATCH] - fixed small bug, that I forgot to port from the previous implementation --- src/components/Widgets/Clock.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Widgets/Clock.vue b/src/components/Widgets/Clock.vue index f2d351ee..26414db2 100644 --- a/src/components/Widgets/Clock.vue +++ b/src/components/Widgets/Clock.vue @@ -37,7 +37,7 @@ export default { return this.timeZone.split('/')[1].replaceAll('_', ' '); }, showSeconds() { - if (this.options.hideSeconds) return this.options.hideSeconds; + if (this.options.hideSeconds) return !this.options.hideSeconds; // this is the default return true; },