Skip to content

Commit

Permalink
make component clear
Browse files Browse the repository at this point in the history
  • Loading branch information
chengr4 committed Apr 2, 2024
1 parent 7f6a7f0 commit 022839d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions site/frontend/src/pages/compare/page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
defaultRuntimeFilter,
} from "./runtime/common";
import ArtifactSizeTable from "./artifact-size/artifact-size-table.vue";
import SummaryTable from "./summary/tab-summary-table.vue";
import TabSummaryTable from "./summary/tab-summary-table.vue";
// ------ block abstract from tabs.vue ------
import {
Expand Down Expand Up @@ -185,7 +185,7 @@ const tabs = [
title: "Compile-time",
selected: activeTab.value === Tab.CompileTime,
id: Tab.CompileTime,
summary: <SummaryTable summary={compileSummary.value} />,
summary: <TabSummaryTable summary={compileSummary.value} />,
isVisible: true,
},
{
Expand All @@ -194,7 +194,7 @@ const tabs = [
title: "Runtime",
selected: activeTab.value === Tab.Runtime,
id: Tab.Runtime,
summary: <SummaryTable summary={runtimeSummary.value} />,
summary: <TabSummaryTable summary={runtimeSummary.value} />,
isVisible: true,
},
{
Expand Down

0 comments on commit 022839d

Please sign in to comment.