1
0
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:
Roman 2020-06-10 11:59:43 +03:00
parent fe1c92c56e
commit c84b108178
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import ChartJS from "src/renderer/components/chart/chart.js";
import ChartJS from "chart.js";
import get from "lodash/get";
const defaultOptions = {

View File

@ -2,7 +2,7 @@ import React, { useEffect, useRef } from "react";
import merge from "lodash/merge";
import moment from "moment";
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 { bytesToUnits, cssNames } from "../../utils";
import { ZebraStripes } from "./zebra-stripes.plugin";

View File

@ -1,7 +1,7 @@
// Plugin for drawing stripe bars on top of any timeseries barchart
// 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 get from "lodash/get";