From 43708d48ce674c412ee4fde8452b76a0e6104801 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Fri, 1 Dec 2023 08:58:28 +0000 Subject: [PATCH] Code Format --- components/lib/calendar/Calendar.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index 80043b4e5..db87418de 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -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); } }