fix clock format

This commit is contained in:
Gerome Matilla 2020-06-09 10:55:25 +08:00
parent 0c083f497c
commit 3814cf563f

View File

@ -31,7 +31,7 @@ class Clock {
min = this._appendZero(min);
// Update clock id element
this._clockEl.innerHTML = `${hour}:${min}${midDay}` ;
this._clockEl.innerHTML = `${hour}:${min} ${midDay}` ;
}
_startClock = () => {