Move DB, Meas, and Field List components to /shared
parent
942855cef3
commit
90c93cf9e9
|
@ -1,8 +1,8 @@
|
|||
import React, {PropTypes} from 'react'
|
||||
|
||||
import DatabaseList from 'src/data_explorer/components/DatabaseList'
|
||||
import MeasurementList from 'src/data_explorer/components/MeasurementList'
|
||||
import FieldList from 'src/data_explorer/components/FieldList'
|
||||
import DatabaseList from 'src/shared/components/DatabaseList'
|
||||
import MeasurementList from 'src/shared/components/MeasurementList'
|
||||
import FieldList from 'src/shared/components/FieldList'
|
||||
|
||||
const actionBinder = (id, action) => item => action(id, item)
|
||||
|
||||
|
|
|
@ -2,9 +2,9 @@ import React, {PropTypes} from 'react'
|
|||
import buildInfluxQLQuery from 'utils/influxql'
|
||||
import classnames from 'classnames'
|
||||
|
||||
import DatabaseList from '../../data_explorer/components/DatabaseList'
|
||||
import MeasurementList from '../../data_explorer/components/MeasurementList'
|
||||
import FieldList from '../../data_explorer/components/FieldList'
|
||||
import DatabaseList from 'src/shared/components/DatabaseList'
|
||||
import MeasurementList from 'src/shared/components/MeasurementList'
|
||||
import FieldList from 'src/shared/components/FieldList'
|
||||
|
||||
import {defaultEveryFrequency} from 'src/kapacitor/constants'
|
||||
|
||||
|
|
Loading…
Reference in New Issue