Track floating link changes in undo/redo history (#3160)

This commit is contained in:
filtered
2025-03-20 22:19:31 +11:00
committed by GitHub
parent 1f03984d12
commit 42d99fc37e

View File

@@ -398,7 +398,7 @@ export class ChangeTracker {
return false
// Compare other properties normally
for (const key of ['links', 'reroutes', 'groups']) {
for (const key of ['links', 'floatingLinks', 'reroutes', 'groups']) {
if (!_.isEqual(a[key], b[key])) {
return false
}