From e0a0ff734bbfb31d2c3a928d8b775d64c584a21f Mon Sep 17 00:00:00 2001 From: ebb-tide Date: Thu, 17 May 2018 10:24:01 -0700 Subject: [PATCH] Correct paths to GRAPH_TYPES --- ui/src/dashboards/components/AxesOptions.js | 2 +- ui/src/dashboards/components/GraphTypeSelector.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/dashboards/components/AxesOptions.js b/ui/src/dashboards/components/AxesOptions.js index 6cf482369..a621b14fc 100644 --- a/ui/src/dashboards/components/AxesOptions.js +++ b/ui/src/dashboards/components/AxesOptions.js @@ -13,7 +13,7 @@ import { AXES_SCALE_OPTIONS, TOOLTIP_Y_VALUE_FORMAT, } from 'src/dashboards/constants/cellEditor' -import {GRAPH_TYPES} from 'src/types/dashboard' +import {GRAPH_TYPES} from 'src/dashboards/graphics/graph' import {updateAxes} from 'src/dashboards/actions/cellEditorOverlay' import {ErrorHandling} from 'src/shared/decorators/errors' diff --git a/ui/src/dashboards/components/GraphTypeSelector.js b/ui/src/dashboards/components/GraphTypeSelector.js index 2c729f89a..4e6e04f73 100644 --- a/ui/src/dashboards/components/GraphTypeSelector.js +++ b/ui/src/dashboards/components/GraphTypeSelector.js @@ -6,7 +6,7 @@ import classnames from 'classnames' import FancyScrollbar from 'shared/components/FancyScrollbar' -import {GRAPH_TYPES} from 'src/types/dashboard' +import {GRAPH_TYPES} from 'src/dashboards/graphics/graph' import {changeCellType} from 'src/dashboards/actions/cellEditorOverlay'