mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
fix import paths
This commit is contained in:
parent
fe1c92c56e
commit
c84b108178
@ -1,4 +1,4 @@
|
|||||||
import ChartJS from "src/renderer/components/chart/chart.js";
|
import ChartJS from "chart.js";
|
||||||
import get from "lodash/get";
|
import get from "lodash/get";
|
||||||
|
|
||||||
const defaultOptions = {
|
const defaultOptions = {
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import React, { useEffect, useRef } from "react";
|
|||||||
import merge from "lodash/merge";
|
import merge from "lodash/merge";
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import Color from "color";
|
import Color from "color";
|
||||||
import { ChartData, ChartOptions, ChartPoint, Scriptable } from "src/renderer/components/chart/chart.js";
|
import { ChartData, ChartOptions, ChartPoint, Scriptable } from "chart.js";
|
||||||
import { Chart, ChartKind, ChartProps } from "./chart";
|
import { Chart, ChartKind, ChartProps } from "./chart";
|
||||||
import { bytesToUnits, cssNames } from "../../utils";
|
import { bytesToUnits, cssNames } from "../../utils";
|
||||||
import { ZebraStripes } from "./zebra-stripes.plugin";
|
import { ZebraStripes } from "./zebra-stripes.plugin";
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Plugin for drawing stripe bars on top of any timeseries barchart
|
// Plugin for drawing stripe bars on top of any timeseries barchart
|
||||||
// Based on cover DIV element with repeating-linear-gradient style
|
// Based on cover DIV element with repeating-linear-gradient style
|
||||||
|
|
||||||
import { ChartPoint, default as ChartJS } from "src/renderer/components/chart/chart.js";
|
import ChartJS, { ChartPoint } from "chart.js";
|
||||||
import moment, { Moment } from "moment";
|
import moment, { Moment } from "moment";
|
||||||
import get from "lodash/get";
|
import get from "lodash/get";
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user