diff --git a/ui/src/dashboards/components/QueryMaker.js b/ui/src/dashboards/components/QueryMaker.js index f6dc36a9fb..169f9e230f 100644 --- a/ui/src/dashboards/components/QueryMaker.js +++ b/ui/src/dashboards/components/QueryMaker.js @@ -1,7 +1,7 @@ import React, {PropTypes} from 'react' import EmptyQuery from 'src/shared/components/EmptyQuery' -import QueryTabList from 'src/dashboards/components/QueryTabList' +import QueryTabList from 'src/shared/components/QueryTabList' import QueryTextArea from 'src/dashboards/components/QueryTextArea' import SchemaExplorer from 'src/dashboards/components/SchemaExplorer' import buildInfluxQLQuery from 'utils/influxql' diff --git a/ui/src/data_explorer/components/QueryMaker.js b/ui/src/data_explorer/components/QueryMaker.js index bf866b0fcd..d4c056139f 100644 --- a/ui/src/data_explorer/components/QueryMaker.js +++ b/ui/src/data_explorer/components/QueryMaker.js @@ -2,7 +2,7 @@ import React, {PropTypes} from 'react' import QueryBuilder from './QueryBuilder' import QueryMakerTab from './QueryMakerTab' -import QueryTabList from 'src/dashboards/components/QueryTabList' +import QueryTabList from 'src/shared/components/QueryTabList' import buildInfluxQLQuery from 'utils/influxql' import classnames from 'classnames' diff --git a/ui/src/dashboards/components/QueryTabList.js b/ui/src/shared/components/QueryTabList.js similarity index 100% rename from ui/src/dashboards/components/QueryTabList.js rename to ui/src/shared/components/QueryTabList.js