fix(editor): Mark workflow as unsaved when reverting deletion of a node (#15959)

This commit is contained in:
Charlie Kolb
2025-06-10 08:54:23 +02:00
committed by GitHub
parent c92701cbdf
commit 9cf7293990

View File

@@ -436,6 +436,7 @@ export function useCanvasOperations() {
function revertDeleteNode(node: INodeUi) {
workflowsStore.addNode(node);
uiStore.stateIsDirty = true;
}
function trackDeleteNode(id: string) {