diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index 4fc9f83a4..a09039c0d 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -2652,8 +2652,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: