Code Format

pull/4925/head
GitHub Actions Bot 2023-12-01 08:58:28 +00:00
parent deceff6e82
commit 43708d48ce
1 changed files with 2 additions and 2 deletions

View File

@ -1272,10 +1272,10 @@ export default {
let formattedValue = null;
if (date) {
formattedValue = this.formatDate(date, this.datePattern);
formattedValue = this.formatDate(date, this.datePattern);
if (this.showTime || this.timeOnly) {
formattedValue += ' ' + this.formatTime(date);
formattedValue += ' ' + this.formatTime(date);
}
}