Merge pull request #7094 from J-Michalek/fix/dialog-escape-closing

fix(dialog): escape closing when not closable via button
pull/7064/merge
Tuğçe Küçükoğlu 2025-01-15 09:58:10 +03:00 committed by GitHub
commit b9a8efc871
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ export default {
this.bindDocumentDragEndListener();
}
if (this.closeOnEscape && this.closable) {
if (this.closeOnEscape) {
this.bindDocumentKeyDownListener();
}
},