mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
fix(editor): Close Push connection in NodeView v2 (no-changelog) (#10762)
This commit is contained in:
parent
e56dabd63a
commit
0e814eb99c
|
@ -1536,7 +1536,10 @@ onBeforeUnmount(() => {
|
||||||
removeImportEventBindings();
|
removeImportEventBindings();
|
||||||
removeExecutionOpenedEventBindings();
|
removeExecutionOpenedEventBindings();
|
||||||
unregisterCustomActions();
|
unregisterCustomActions();
|
||||||
collaborationStore.terminate();
|
if (!isDemoRoute.value) {
|
||||||
|
collaborationStore.terminate();
|
||||||
|
pushConnectionStore.pushDisconnect();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue