Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 19c3f66

Browse files
committed
Rename OverallTable to OverallSummary
1 parent 8fb759b commit 19c3f66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/frontend/src/pages/compare/compile/compile-page.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import QuickLinks from "./quick-links.vue";
33
import Filters from "./filters.vue";
4-
import OverallTable from "../summary/overall-table.vue";
4+
import OverallSummary from "../summary/overall-summary.vue";
55
import Aggregations from "../summary/aggregations.vue";
66
import Benchmarks from "../benchmarks/benchmarks.vue";
77
import {CompareResponse, CompareSelector} from "../types";
@@ -171,7 +171,7 @@ const filteredSummary = computed(() => computeSummary(testCases.value));
171171
@change="updateFilter"
172172
@export="exportData"
173173
/>
174-
<OverallTable :summary="filteredSummary" />
174+
<OverallSummary :summary="filteredSummary" />
175175
<Aggregations :cases="testCases" />
176176
<Benchmarks
177177
:data="data"

0 commit comments

Comments
 (0)