From 3628e2fd8c0a1bf9a0627f968d1483f7901cc8cf 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: Mon, 18 Sep 2023 10:43:49 +0300 Subject: [PATCH] Fixed #3624 Fixed #3523 --- 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 7f73dfd0b..67fc55fd2 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -2489,7 +2489,7 @@ export default { cell.tabIndex = '0'; if (!this.inline && (!this.navigationState || !this.navigationState.button) && !this.timePickerChange) { - cell.focus(); + if (!this.manualInput) cell.focus(); } this.preventFocus = false;