This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
site/frontend/src/pages/compare Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
<script setup lang="ts">
2
2
import {computeSummary , SummaryGroup , TestCaseComparison } from " ../data" ;
3
3
import Toggle from " ../toggle.vue" ;
4
- import SummaryTable from " ./summary-table.vue" ;
4
+ import SummaryTable from " ../summary /summary-table.vue" ;
5
5
import {createPersistedRef } from " ../../../storage" ;
6
6
import {PREF_AGGREGATIONS_OPENED } from " ../prefs" ;
7
- import {CompileTestCase } from " ../compile /common" ;
7
+ import {CompileTestCase } from " ./common" ;
8
8
9
9
const props = defineProps <{
10
10
cases: TestCaseComparison <CompileTestCase >[];
Original file line number Diff line number Diff line change 2
2
import QuickLinks from " ./quick-links.vue" ;
3
3
import Filters from " ./filters.vue" ;
4
4
import OverallSummary from " ../summary/overall-summary.vue" ;
5
- import Aggregations from " ../summary /aggregations.vue" ;
5
+ import Aggregations from " ./aggregations.vue" ;
6
6
import Benchmarks from " ../benchmarks/benchmarks.vue" ;
7
7
import {CompareResponse , CompareSelector } from " ../types" ;
8
8
import {computed , ref } from " vue" ;
Original file line number Diff line number Diff line change 1
- import { BenchmarkFilter , CompareResponse , StatComparison } from "../types" ;
2
- import { calculateComparison , computeSummary , TestCaseComparison } from "../data" ;
1
+ import { BenchmarkFilter , StatComparison } from "../types" ;
2
+ import { calculateComparison , TestCaseComparison } from "../data" ;
3
3
4
4
export interface RuntimeTestCase {
5
5
benchmark : string ;
You can’t perform that action at this time.
0 commit comments