mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
🐛 Fix UpdatedPanel not closing (#2563)
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
:direction="direction"
|
||||
:visible="visible"
|
||||
:size="width"
|
||||
:before-close="beforeClose"
|
||||
:before-close="close"
|
||||
:modal="modal"
|
||||
:wrapperClosable="wrapperClosable"
|
||||
>
|
||||
@@ -81,6 +81,10 @@ export default Vue.extend({
|
||||
}
|
||||
},
|
||||
close() {
|
||||
if (this.beforeClose) {
|
||||
this.beforeClose();
|
||||
return;
|
||||
}
|
||||
this.$store.commit('ui/closeTopModal');
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user