From c35f2348fa6a3af0cba133b99727a4a9891d5a28 Mon Sep 17 00:00:00 2001 From: naved Date: Mon, 10 Apr 2023 16:56:07 +0530 Subject: [PATCH] Inconsistent calendar height fix (#2206) --- src/components/MdDatepicker/MdDatepickerDialog.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/MdDatepicker/MdDatepickerDialog.vue b/src/components/MdDatepicker/MdDatepickerDialog.vue index 3ce963cc2..9bf10693f 100644 --- a/src/components/MdDatepicker/MdDatepickerDialog.vue +++ b/src/components/MdDatepicker/MdDatepickerDialog.vue @@ -268,10 +268,8 @@ const months = getElements(this.$el, '.md-datepicker-month') if (months.length) { - const nextMonth = months[months.length - 1] - this.contentStyles = { - height: nextMonth.offsetHeight + 10 + 'px' + height: '264px' } } },