Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ const unit = computed(() => {
<div class="bench-table" :id="id">
<slot name="header"></slot>
<div v-if="comparisons.length === 0" style="text-align: center">
{{ hasNonRelevant ? "No relevant results" : "No results" }}
{{
hasNonRelevant
? "No relevant results (enable Filters -> Show non-relevant results to see all)"
: "No results"
}}
</div>
<table v-else class="benches compare">
<thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const summary = computed(() => props.summary);
</script>

<template>
<div class="main-summary">
<div class="main-summary" v-if="summary.all.count > 0">
<SummaryTable :summary="summary"></SummaryTable>
<div style="position: absolute; right: 5px; top: 5px">
<Tooltip style="margin-right: 1em">
Expand Down
Loading