mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 09:52:35 +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) {
|
onOverlayKeyDown(event) {
|
||||||
switch (event.code) {
|
switch (event.code) {
|
||||||
case 'Escape':
|
case 'Escape':
|
||||||
|
if (!this.inline) {
|
||||||
this.input.focus();
|
this.input.focus();
|
||||||
this.overlayVisible = false;
|
this.overlayVisible = false;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue