Skip to content

Commit f84be89

Browse files
committed
Move graph rendering to a separate module
1 parent d7aa012 commit f84be89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/frontend/src/pages/graphs/plots.ts renamed to site/frontend/src/graph/render.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 "../../graph/data";
2+
import {GraphData, GraphsSelector} from "./data";
33

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
getUrlParams,
99
navigateToUrlParams,
1010
} from "../../utils/navigation";
11-
import {renderPlots} from "./plots";
11+
import {renderPlots} from "../../graph/render";
1212
import {BenchmarkInfo, loadBenchmarkInfo} from "../../api";
1313
import AsOf from "../../components/as-of.vue";
1414
import {loadGraphs} from "../../graph/api";

0 commit comments

Comments
 (0)