From 890b6702939f624d72d7cd85bae27965959ae383 Mon Sep 17 00:00:00 2001 From: yigitfindikli Date: Wed, 30 Mar 2022 14:19:31 +0300 Subject: [PATCH] Fixed #2369 - Calendar | Loses alignment when positioned at the top of the input and the user clicks in the year/month --- src/components/calendar/Calendar.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index bc8a8b5822..1440219a52 100755 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -411,6 +411,9 @@ export default { responsiveOptions() { this.destroyResponsiveStyleElement(); this.createResponsiveStyle(); + }, + currentView() { + Promise.resolve(null).then(() => this.alignOverlay()); } }, methods: {