Skip to content

Commit 7a21139

Browse files
authored
Merge pull request #1414 from rust-lang/compare-incr-patched-fix
Properly display incr-patched benchmarks in aggregation table in comp…
2 parents 801071c + 303ca11 commit 7a21139

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/static/compare/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ app.component("aggregations", {
529529
calculateSummary(keyAttribute, keyValue) {
530530
const benchmarks = [];
531531
for (const benchmark of this.cases) {
532-
if (benchmark[keyAttribute] === keyValue) {
532+
if (benchmark[keyAttribute].startsWith(keyValue)) {
533533
benchmarks.push(benchmark);
534534
}
535535
}

0 commit comments

Comments
 (0)