- fixed small bug, that I forgot to port from the previous implementation

This commit is contained in:
Totto16 2022-11-22 10:58:14 +01:00
parent becb50dc58
commit 96684f57c8
No known key found for this signature in database
GPG Key ID: 40285387F8ABE31B
1 changed files with 1 additions and 1 deletions

View File

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