mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
fix(editor): fix resource locator width for trigger nodes (#4302)
This commit is contained in:
@@ -427,9 +427,11 @@ export default mixins(debounceHelper, workflowHelpers, nodeHelpers).extend({
|
|||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$on('refreshList', this.refreshList);
|
this.$on('refreshList', this.refreshList);
|
||||||
this.setWidth();
|
|
||||||
window.addEventListener('resize', this.setWidth);
|
window.addEventListener('resize', this.setWidth);
|
||||||
this.mainPanelMutationSubscription = this.$store.subscribe(this.setWidthOnMainPanelResize);
|
this.mainPanelMutationSubscription = this.$store.subscribe(this.setWidthOnMainPanelResize);
|
||||||
|
setTimeout(() => {
|
||||||
|
this.setWidth();
|
||||||
|
}, 0);
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
// Unsubscribe
|
// Unsubscribe
|
||||||
|
|||||||
Reference in New Issue
Block a user