diff --git a/packages/editor-ui/src/components/WorkerList.ee.vue b/packages/editor-ui/src/components/WorkerList.ee.vue index a14e1fe9a5..0122e8629b 100644 --- a/packages/editor-ui/src/components/WorkerList.ee.vue +++ b/packages/editor-ui/src/components/WorkerList.ee.vue @@ -67,7 +67,7 @@ export default defineComponent({ if (window.Cypress !== undefined) { return; } - this.pushConnect(); + this.pushStore.pushConnect(); this.orchestrationManagerStore.startWorkerStatusPolling(); }, beforeUnmount() { @@ -75,7 +75,7 @@ export default defineComponent({ return; } this.orchestrationManagerStore.stopWorkerStatusPolling(); - this.pushDisconnect(); + this.pushStore.pushDisconnect(); }, computed: { ...mapStores(useUIStore, useOrchestrationStore), diff --git a/packages/editor-ui/src/views/SettingsCommunityNodesView.vue b/packages/editor-ui/src/views/SettingsCommunityNodesView.vue index a3cf360bf7..aeba8fda89 100644 --- a/packages/editor-ui/src/views/SettingsCommunityNodesView.vue +++ b/packages/editor-ui/src/views/SettingsCommunityNodesView.vue @@ -91,7 +91,7 @@ export default defineComponent({ }, async mounted() { // The push connection is needed here to receive `reloadNodeType` and `removeNodeType` events when community nodes are installed, updated, or removed. - this.pushConnect(); + this.pushStore.pushConnect(); try { this.loading = true; @@ -137,7 +137,7 @@ export default defineComponent({ } }, beforeUnmount() { - this.pushDisconnect(); + this.pushStore.pushDisconnect(); }, computed: { ...mapStores(useCommunityNodesStore, useSettingsStore, useUIStore),