From 492618500db487b665b279204c5f8cf48f223ad1 Mon Sep 17 00:00:00 2001 From: Andrew Watkins Date: Fri, 11 Aug 2017 13:57:50 -0700 Subject: [PATCH] Move QueryTabList to shared dir --- ui/src/dashboards/components/QueryMaker.js | 2 +- ui/src/data_explorer/components/QueryMaker.js | 2 +- ui/src/{dashboards => shared}/components/QueryTabList.js | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename ui/src/{dashboards => shared}/components/QueryTabList.js (100%) 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