mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-26 10:24:40 +03:00
- Clock Widget: fix bug, better default Handling for:
use12Hour, showSeconds
This commit is contained in:
parent
5d5dd0a50e
commit
49334ae3c1
@ -37,10 +37,14 @@ export default {
|
||||
return this.timeZone.split('/')[1].replaceAll('_', ' ');
|
||||
},
|
||||
showSeconds() {
|
||||
return !this.options.hideSeconds;
|
||||
if (this.options.hideSeconds) return this.options.hideSeconds;
|
||||
// this is the default
|
||||
return true;
|
||||
},
|
||||
use12Hour() {
|
||||
return !this.options.use12Hour;
|
||||
if (this.options.use12Hour) return this.options.use12Hour;
|
||||
// this is the default, it gets computed by the DateTimeFormat implementation
|
||||
return Intl.DateTimeFormat(this.timeFormat, { timeZone: this.timeZone, hour: 'numeric' }).resolvedOptions().hour12 ?? false;
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
|
Loading…
Reference in New Issue
Block a user