From 17deca3232c602df2aa0a7b6dc67627c922b92ed Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Wed, 30 Apr 2025 17:53:01 +1000 Subject: [PATCH] Add subgraph workflow fields to change tracker --- src/scripts/changeTracker.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/scripts/changeTracker.ts b/src/scripts/changeTracker.ts index bd0305bf2..7f83351be 100644 --- a/src/scripts/changeTracker.ts +++ b/src/scripts/changeTracker.ts @@ -376,7 +376,14 @@ export class ChangeTracker { return false // Compare other properties normally - for (const key of ['links', 'floatingLinks', 'reroutes', 'groups']) { + for (const key of [ + 'links', + 'floatingLinks', + 'reroutes', + 'groups', + 'definitions', + 'subgraphs' + ]) { if (!_.isEqual(a[key], b[key])) { return false }