From 724787e4551fb21231179d0e3bbff3537a23d06d Mon Sep 17 00:00:00 2001 From: Damian Glowala Date: Sat, 17 Feb 2024 13:25:08 +0100 Subject: [PATCH] fix(Calendar): when inline, do not apply fixed width to overlay --- components/lib/calendar/Calendar.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index ae06dd71b..3e1550073 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -617,10 +617,6 @@ export default { if (!this.disabled) { this.preventFocus = true; this.initFocusableCell(); - - if (this.numberOfMonths === 1) { - this.overlay.style.width = DomHandler.getOuterWidth(this.$el) + 'px'; - } } } else { this.input.value = this.formatValue(this.modelValue);