From ae0c694f55e61d69acd6d21e40e583e7ee062b5a 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, 1 Aug 2022 15:23:15 +0300 Subject: [PATCH] Calendar: when date is selected, input focus should remain --- src/components/calendar/Calendar.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index cb707cb9b..fe6adea9d 100755 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -918,6 +918,7 @@ export default { if (this.isSingleSelection() && (!this.showTime || this.hideOnDateTimeSelect)) { setTimeout(() => { + this.input.focus(); this.overlayVisible = false; }, 150); }