fix(editor): Close Push connection in NodeView v2 (no-changelog) (#10762)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-09-10 16:59:20 +02:00
committed by GitHub
parent e56dabd63a
commit 0e814eb99c

View File

@@ -1536,7 +1536,10 @@ onBeforeUnmount(() => {
removeImportEventBindings();
removeExecutionOpenedEventBindings();
unregisterCustomActions();
collaborationStore.terminate();
if (!isDemoRoute.value) {
collaborationStore.terminate();
pushConnectionStore.pushDisconnect();
}
});
</script>