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; },