Merge pull request #6284 from FabienVINCENT/fix-6262-v4.0.5

Fix issue #6262 - Click outside only when not modal for v4.0.5
pull/6391/head
Tuğçe Küçükoğlu 2024-09-11 16:52:02 +03:00 committed by GitHub
commit 6ec92cb397
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

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