mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fix #4732 - Calendar: Console.Error/Crash when pressing Escape key using Inline Calendar
This commit is contained in:
parent
03732ab3f8
commit
3734c1b96c
1 changed files with 5 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue