fixed dirty detection sensitive to instance order

This commit is contained in:
Flaminel
2026-03-21 21:48:53 +02:00
parent 90fedc6fa3
commit bc8aa10588

View File

@@ -242,7 +242,7 @@ export class SeekerComponent implements OnInit, HasPendingChanges {
useCutoff: this.useCutoff(),
useCustomFormatScore: this.useCustomFormatScore(),
useRoundRobin: this.useRoundRobin(),
instances: this.instances(),
instances: [...this.instances()].sort((a, b) => a.arrInstanceId.localeCompare(b.arrInstanceId)),
});
}