From fb7682665ef67dbe44eb9a936234bbbab88c8a2e Mon Sep 17 00:00:00 2001 From: Deniz Date: Mon, 23 Jan 2023 16:13:09 +0300 Subject: [PATCH] Comment line edit --- components/calendar/Calendar.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/components/calendar/Calendar.vue b/components/calendar/Calendar.vue index 8d429ffa0..5c0b87243 100755 --- a/components/calendar/Calendar.vue +++ b/components/calendar/Calendar.vue @@ -1505,6 +1505,7 @@ export default { if (this.hourFormat == '24') newHour = newHour >= 24 ? newHour - 24 : newHour; else if (this.hourFormat == '12') { + // Before the AM/PM break, now after if (prevHour < 12 && newHour > 11) { newPM = !this.pm; }