From 928a94ceb58ba5070e40d7f6fd6ea0a56b70affb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9?= Date: Fri, 7 Aug 2026 19:14:16 +0100 Subject: [PATCH] chore: fixup failure_aggregator typo --- lib/ci/failure_aggregator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ci/failure_aggregator.js b/lib/ci/failure_aggregator.js index eaa429f2..8c421915 100644 --- a/lib/ci/failure_aggregator.js +++ b/lib/ci/failure_aggregator.js @@ -49,7 +49,7 @@ export class FailureAggregator { } const groupedByType = Object.groupBy(data, ({ type }) => type); - for (const group of Object.value(groupedByType)) { + for (const group of Object.values(groupedByType)) { group.sort((a, b) => b.prs.length - a.prs.length); } this.aggregates = groupedByType;