From c86fb52f1fe9a33b8aaf23fa89462e3de7d6fe80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olgu=20=C3=96rs=20Ba=C5=9Fak?= Date: Tue, 9 May 2023 16:51:50 +0300 Subject: [PATCH] Fixed overlay visibility issue when showOnFocus --- 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 19a5b8648..20e851571 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -2642,7 +2642,7 @@ export default { this.$emit('input', event); }, onInputClick() { - if (this.isEnabled() && !this.overlayVisible) { + if (this.showOnFocus && this.isEnabled() && !this.overlayVisible) { this.overlayVisible = true; } },