fixed theme clock showing 0:00 pm for 12 noon
This commit is contained in:
parent
a3282f9023
commit
c9685f85c2
@ -25,7 +25,7 @@ function setTime() {
|
||||
const day = time.getDay()
|
||||
const date = time.getDate()
|
||||
const hours = time.getHours()
|
||||
const hoursForClock = hours % 12
|
||||
const hoursForClock = hours >= 13 ? hours % 12 : hours;
|
||||
const minutes = time.getMinutes()
|
||||
const seconds = time.getSeconds()
|
||||
const ampm = hours >= 12 ? 'PM' : 'AM'
|
||||
|
Loading…
Reference in New Issue
Block a user