From da943a2a536551d05c4e05a5f563f21e2a1d29a6 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, 28 Dec 2022 16:39:40 +0300 Subject: [PATCH] Fixed #3452 - Calendar: inline mode accepts focus --- components/calendar/Calendar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/calendar/Calendar.vue b/components/calendar/Calendar.vue index b35803717..e17b8843d 100755 --- a/components/calendar/Calendar.vue +++ b/components/calendar/Calendar.vue @@ -2503,7 +2503,7 @@ export default { if (cell) { cell.tabIndex = '0'; - if (!this.preventFocus && (!this.navigationState || !this.navigationState.button) && !this.timePickerChange) { + if (!this.inline && (!this.navigationState || !this.navigationState.button) && !this.timePickerChange) { cell.focus(); }