fix: update time format in 12 hrs format if hourFormat is 12hrs
parent
312bf677ea
commit
8fb96cf88e
|
@ -2926,7 +2926,7 @@ export default {
|
|||
return yearPickerValues;
|
||||
},
|
||||
formattedCurrentHour() {
|
||||
if (this.currentHour == 0) {
|
||||
if (this.currentHour == 0 && this.hourFormat == '12') {
|
||||
return this.currentHour + 12;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue