Skip to content

Commit d385dfa

Browse files
committed
Move graph data to a separate module
1 parent 7a0469b commit d385dfa

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

site/frontend/src/pages/graphs/data-selector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import {onMounted, ref} from "vue";
3-
import {GraphKind} from "./state";
3+
import {GraphKind} from "../../graph/data";
44
import {BenchmarkInfo} from "../../api";
55
66
export interface SelectionParams {

site/frontend/src/pages/graphs/page.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import {nextTick, Ref, ref} from "vue";
33
import {withLoading} from "../../utils/loading";
4-
import {GraphData, GraphKind, GraphsSelector} from "./state";
4+
import {GraphData, GraphKind, GraphsSelector} from "../../graph/data";
55
import {GRAPH_DATA_URL} from "../../urls";
66
import DataSelector, {SelectionParams} from "./data-selector.vue";
77
import {

site/frontend/src/pages/graphs/plots.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import uPlot, {TypedArray} from "uplot";
2-
import {GraphData, GraphsSelector} from "./state";
2+
import {GraphData, GraphsSelector} from "../../graph/data";
33

44
const commonCacheStateColors = {
55
full: "#7cb5ec",

0 commit comments

Comments
 (0)