Code Format

pull/5630/head
GitHub Actions Bot 2024-04-19 11:52:56 +00:00
parent dd71f32314
commit d1a26a2bdb
1 changed files with 1 additions and 3 deletions

View File

@ -1162,9 +1162,7 @@ export default {
let date = new Date(dateMeta.year, dateMeta.month, dateMeta.day);
if (this.showTime) {
(this.hourFormat === '12' && this.currentHour !== 12 && this.pm) ?
date.setHours(this.currentHour + 12) :
date.setHours(this.currentHour);
this.hourFormat === '12' && this.currentHour !== 12 && this.pm ? date.setHours(this.currentHour + 12) : date.setHours(this.currentHour);
date.setMinutes(this.currentMinute);
date.setSeconds(this.currentSecond);