@@ -554,14 +554,18 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
554
554
:cases ="testCases.filter(c => c.category === 'primary') "
555
555
:show-raw-data ="showRawData "
556
556
:commit-a ="data.a.commit "
557
- :commit-b ="data.b.commit "> </ test-cases-table >
557
+ :commit-b ="data.b.commit "
558
+ :before ="before "
559
+ :after ="after "> </ test-cases-table >
558
560
< hr />
559
561
< test-cases-table
560
562
title ="Secondary "
561
563
:cases ="testCases.filter(c => c.category === 'secondary') "
562
564
:show-raw-data ="showRawData "
563
565
:commit-a ="data.a.commit "
564
- :commit-b ="data.b.commit "> </ test-cases-table >
566
+ :commit-b ="data.b.commit "
567
+ :before ="before "
568
+ :after ="after "> </ test-cases-table >
565
569
< br />
566
570
< hr />
567
571
< div >
@@ -631,7 +635,7 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
631
635
}
632
636
} ) ;
633
637
Vue . component ( 'test-cases-table' , {
634
- props : [ 'cases' , 'showRawData' , 'commitA' , 'commitB' , 'title' ] ,
638
+ props : [ 'cases' , 'showRawData' , 'commitA' , 'commitB' , 'before' , 'after' , ' title'] ,
635
639
methods : {
636
640
detailedQueryLink ( commit , testCase ) {
637
641
return `/detailed-query.html?commit=${ commit } &benchmark=${ testCase . benchmark + "-" + testCase . profile } &scenario=${ testCase . scenario } ` ;
@@ -664,8 +668,8 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
664
668
</span>
665
669
</span>
666
670
</th>
667
- <th v-if="showRawData">{{before}}</th>
668
- <th v-if="showRawData">{{after}}</th>
671
+ <th v-if="showRawData">{{ before }}</th>
672
+ <th v-if="showRawData">{{ after }}</th>
669
673
</tr>
670
674
</thead>
671
675
<tbody>
0 commit comments