pull/4696/head
Cagatay Civici 2023-10-25 18:56:35 +03:00
commit 411d580780
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ export default {
}
},
onKeyDown(event) {
if (event.code === 'Escape' && this.closeOnEscape) {
if (event.code === 'Escape' || this.closeOnEscape) {
this.visible = false;
}
},