Skip to content

Commit 303ca11

Browse files
committed
Properly display incr-patched benchmarks in aggregation table in compare page
1 parent 801071c commit 303ca11

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)