From 7f6d0b3c4746440e43f4fbff0389a50a450bcee2 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Thu, 15 May 2025 12:13:55 +1000 Subject: [PATCH] [Debug] Include more items in graph diff output --- src/scripts/changeTracker.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/scripts/changeTracker.ts b/src/scripts/changeTracker.ts index d3b67091a..ab1f06ac9 100644 --- a/src/scripts/changeTracker.ts +++ b/src/scripts/changeTracker.ts @@ -399,7 +399,12 @@ export class ChangeTracker { function sortGraphNodes(graph: ComfyWorkflowJSON) { return { links: graph.links, + floatingLinks: graph.floatingLinks, + reroutes: graph.reroutes, groups: graph.groups, + extra: graph.extra, + definitions: graph.definitions, + subgraphs: graph.subgraphs, nodes: graph.nodes.sort((a, b) => { if (typeof a.id === 'number' && typeof b.id === 'number') { return a.id - b.id