We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c22c2cf commit 004e986Copy full SHA for 004e986
apps/webapp/app/services/runsReplicationService.server.ts
@@ -602,6 +602,7 @@ export class RunsReplicationService {
602
}
603
const aRunId = a[TASK_RUN_INDEX.run_id] as string;
604
const bRunId = b[TASK_RUN_INDEX.run_id] as string;
605
+ if (aRunId === bRunId) return 0;
606
return aRunId < bRunId ? -1 : 1;
607
});
608
@@ -613,6 +614,7 @@ export class RunsReplicationService {
613
614
.sort((a, b) => {
615
const aRunId = a[PAYLOAD_INDEX.run_id] as string;
616
const bRunId = b[PAYLOAD_INDEX.run_id] as string;
617
618
619
620
0 commit comments