We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2270c24 commit 290e72dCopy full SHA for 290e72d
test-result-summary-client/src/TrafficLight/TrafficLight.jsx
@@ -248,11 +248,17 @@ function TrafficLight() {
248
);
249
}
250
};
251
- const firstRow = first(tableData) ?? {};
252
- const groups = Object.values(firstRow) ?? [];
+
253
const buildNameTitles = uniq(
254
- groups.map(({ buildNameTitle }) => buildNameTitle).filter(identity)
+ tableData
+ .map((row = {}) =>
255
+ Object.values(row)
256
+ .map(({ buildNameTitle }) => buildNameTitle)
257
+ .filter(identity)
258
+ )
259
+ .flat()
260
261
262
const columns = [
263
{
264
title: 'Benchmark Name',
0 commit comments