From a2993e1bdfe0fca0d23b74571455e9e2365da6d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 29 Mar 2023 13:04:00 +0300 Subject: [PATCH] Fixed #3632 - DataTable Filter with Calendar is not showing in proper location --- components/lib/calendar/Calendar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index f07f0f2ac..58959532d 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -2598,7 +2598,7 @@ export default { this.$emit('input', event); }, onInputClick() { - if (this.showOnFocus && this.isEnabled() && !this.overlayVisible) { + if (this.isEnabled() && !this.overlayVisible) { this.overlayVisible = true; } },