Skip to content

Commit fda19fe

Browse files
committed
Keep some of the old columns
1 parent 44e652e commit fda19fe

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

site/static/compare.html

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,8 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
423423
<table id="benches" class="compare">
424424
<tbody>
425425
<tr>
426-
<th>Benchmark Profile Scenario</th>
426+
<th>Benchmark & Profile</th>
427+
<th>Scenario</th>
427428
<th>% Change</th>
428429
<th>
429430
Significance Factor<span class="tooltip">?
@@ -436,13 +437,15 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
436437
</span>
437438
</span>
438439
</th>
439-
<th>{{before}} &lt;=&gt; {{after}}</th>
440+
<th>{{before}}</th>
441+
<th>{{after}}</th>
440442
</tr>
441443
</tbody>
442444
<tbody>
443445
<template v-for="testCase in testCases">
444446
<tr>
445-
<td>{{ testCase.benchmark }} {{ testCase.profile }} <br /> {{ testCase.scenario }}</td>
447+
<td>{{ testCase.benchmark }} {{ testCase.profile }}</td>
448+
<td>{{ testCase.scenario }}</td>
446449
<td>
447450
<a v-bind:href="percentLink(data.b.commit, data.a.commit, testCase)">
448451
<span v-bind:class="percentClass(testCase.percent)">
@@ -458,7 +461,8 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
458461
<a v-bind:href="detailedQueryLink(data.a.commit, testCase)">
459462
{{ testCase.datumA }}
460463
</a>
461-
&lt;=&gt;
464+
</td>
465+
<td>
462466
<a v-bind:href="detailedQueryLink(data.b.commit, testCase)">
463467
{{ testCase.datumB }}
464468
</a>

0 commit comments

Comments
 (0)