Fix issue #6262 - Click outside only when not modal for v4.0.5

pull/6284/head
Fabien VINCENT 2024-08-23 22:28:18 +02:00
parent 71f853a174
commit bb889406af
1 changed files with 2 additions and 2 deletions

View File

@ -71,9 +71,9 @@ export default {
watch: {
dismissable(newValue) {
if (newValue) {
this.bindOutsideClickListener();
this.enableDocumentSettings();
} else {
this.unbindOutsideClickListener();
this.disableDocumentSettings();
}
}
},