From 3e90d002369f0a99af6df9b7bc9e07afc119ddd1 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 30c2f3289..d3b67091a 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 }