Lint fixes

pull/6768/head
tugcekucukoglu 2024-11-12 12:33:15 +03:00
parent bdf5ebf9e9
commit a46cbb346b
1 changed files with 1 additions and 0 deletions

View File

@ -2927,6 +2927,7 @@ export default {
if (this.currentHour == 0) {
return this.currentHour + 12;
}
return this.currentHour < 10 ? '0' + this.currentHour : this.currentHour;
},
formattedCurrentMinute() {