File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
site/frontend/src/pages/compare Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,11 @@ const unit = computed(() => {
4848 <div class =" bench-table" :id =" id" >
4949 <slot name =" header" ></slot >
5050 <div v-if =" comparisons.length === 0" style =" text-align : center " >
51- {{ hasNonRelevant ? "No relevant results" : "No results" }}
51+ {{
52+ hasNonRelevant
53+ ? "No relevant results (enable Filters -> Show non-relevant results to see all)"
54+ : "No results"
55+ }}
5256 </div >
5357 <table v-else class =" benches compare" >
5458 <thead >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const summary = computed(() => props.summary);
1111 </script >
1212
1313<template >
14- <div class =" main-summary" >
14+ <div class =" main-summary" v-if = " summary.all.count > 0 " >
1515 <SummaryTable :summary =" summary" ></SummaryTable >
1616 <div style =" position : absolute ; right : 5px ; top : 5px " >
1717 <Tooltip style =" margin-right : 1em " >
You can’t perform that action at this time.
0 commit comments