From bc8aa10588d30600c7682fa6c7234138ff7f80fd Mon Sep 17 00:00:00 2001 From: Flaminel Date: Sat, 21 Mar 2026 21:48:53 +0200 Subject: [PATCH] fixed dirty detection sensitive to instance order --- .../src/app/features/settings/seeker/seeker.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/frontend/src/app/features/settings/seeker/seeker.component.ts b/code/frontend/src/app/features/settings/seeker/seeker.component.ts index 657edbc8..1c855327 100644 --- a/code/frontend/src/app/features/settings/seeker/seeker.component.ts +++ b/code/frontend/src/app/features/settings/seeker/seeker.component.ts @@ -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)), }); }