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 acbf5eb commit 11b541aCopy full SHA for 11b541a
devops/scripts/benchmarks/html/scripts.js
@@ -540,7 +540,7 @@ function processTimeseriesData(benchmarkRuns) {
540
function processBarChartsData(benchmarkRuns) {
541
const groupedResults = {};
542
543
- benchmarkRuns.reverse().forEach(run => {
+ benchmarkRuns.forEach(run => {
544
run.results.forEach(result => {
545
if (!result.explicit_group) return;
546
@@ -582,7 +582,8 @@ function processBarChartsData(benchmarkRuns) {
582
}
583
584
const runIndex = group.labels.indexOf(run.name);
585
- dataset.data[runIndex] = result.value;
+ if (dataset.data[runIndex] == null)
586
+ dataset.data[runIndex] = result.value;
587
});
588
589
0 commit comments