Fixed #3560 - Dialog: dismissableMask not working when closable false

pull/3594/head
Tuğçe Küçükoğlu 2023-01-26 16:45:42 +03:00
parent b3dee7e8cc
commit 62672251e8
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ export default {
this.$emit('after-hide');
},
onMaskClick(event) {
if (this.dismissableMask && this.closable && this.modal && this.mask === event.target) {
if (this.dismissableMask && this.modal && this.mask === event.target) {
this.close();
}
},