diff --git a/superset-frontend/src/components/BootstrapSliderWrapper.less b/superset-frontend/src/components/BootstrapSliderWrapper/BootstrapSliderWrapper.less similarity index 94% rename from superset-frontend/src/components/BootstrapSliderWrapper.less rename to superset-frontend/src/components/BootstrapSliderWrapper/BootstrapSliderWrapper.less index e78a2dd6689..afc9bac586b 100644 --- a/superset-frontend/src/components/BootstrapSliderWrapper.less +++ b/superset-frontend/src/components/BootstrapSliderWrapper/BootstrapSliderWrapper.less @@ -16,7 +16,7 @@ * specific language governing permissions and limitations * under the License. */ -@import '../../stylesheets/less/variables.less'; +@import '../../../stylesheets/less/variables.less'; .BootstrapSliderWrapper .slider-selection { background: @gray-bg; diff --git a/superset-frontend/src/components/BootstrapSliderWrapper.jsx b/superset-frontend/src/components/BootstrapSliderWrapper/index.jsx similarity index 100% rename from superset-frontend/src/components/BootstrapSliderWrapper.jsx rename to superset-frontend/src/components/BootstrapSliderWrapper/index.jsx diff --git a/superset-frontend/src/explore/components/controls/SliderControl.jsx b/superset-frontend/src/explore/components/controls/SliderControl.jsx index d979d983079..c23d1c91306 100644 --- a/superset-frontend/src/explore/components/controls/SliderControl.jsx +++ b/superset-frontend/src/explore/components/controls/SliderControl.jsx @@ -19,8 +19,8 @@ import React from 'react'; import PropTypes from 'prop-types'; -import BootstrapSliderWrapper from '../../../components/BootstrapSliderWrapper'; -import ControlHeader from '../ControlHeader'; +import BootstrapSliderWrapper from 'src/components/BootstrapSliderWrapper'; +import ControlHeader from 'src/explore/components/ControlHeader'; const propTypes = { onChange: PropTypes.func,