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(() => {
48
48
<div class =" bench-table" :id =" id" >
49
49
<slot name =" header" ></slot >
50
50
<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
+ }}
52
56
</div >
53
57
<table v-else class =" benches compare" >
54
58
<thead >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const summary = computed(() => props.summary);
11
11
</script >
12
12
13
13
<template >
14
- <div class =" main-summary" >
14
+ <div class =" main-summary" v-if = " summary.all.count > 0 " >
15
15
<SummaryTable :summary =" summary" ></SummaryTable >
16
16
<div style =" position : absolute ; right : 5px ; top : 5px " >
17
17
<Tooltip style =" margin-right : 1em " >
You can’t perform that action at this time.
0 commit comments