From 67fc6d4f7ab4e7cb722f943f06dc9e357efba2fd Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Fri, 3 Apr 2026 00:14:43 +0200 Subject: [PATCH] Skip autosave for move-only changes --- js/snapshot_manager.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/snapshot_manager.js b/js/snapshot_manager.js index 8c91f3f..8f1d5f6 100644 --- a/js/snapshot_manager.js +++ b/js/snapshot_manager.js @@ -1459,6 +1459,7 @@ async function _captureSnapshotInner(label) { const prevGraph = lastGraphDataMap.get(workflowKey); const changeType = detectChangeType(prevGraph, graphData); + if (changeType === "move") return false; // Determine parentId for branching let parentId = null;