Skip to content

Commit e201e74

Browse files
committed
Fix colspan of benchmark detail
1 parent 8bcb6c3 commit e201e74

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

site/frontend/src/pages/compare/compile/table/comparisons-table.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ function prettifyRawNumber(number: number): string {
2323
return number.toLocaleString();
2424
}
2525
26+
// Modify this when changing the number of columns in the table!
2627
const columnCount = computed(() => {
27-
const base = 7;
28+
const base = 8;
2829
if (props.showRawData) {
2930
return base + 2;
3031
}

0 commit comments

Comments
 (0)