diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index 48d1bbc6d..96eee01ed 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -2646,8 +2646,11 @@ export default { onOverlayKeyDown(event) { switch (event.code) { case 'Escape': - this.input.focus(); - this.overlayVisible = false; + if (!this.inline) { + this.input.focus(); + this.overlayVisible = false; + } + break; default: