Add subgraph workflow fields to change tracker

This commit is contained in:
filtered
2025-04-30 17:53:01 +10:00
parent 4aef8386a7
commit 17deca3232

View File

@@ -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
}