diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-12-09 15:44:24 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-12-09 17:16:20 +0100 |
commit | 4e096de629fda4bbdba94d8823da3f92881d7a4c (patch) | |
tree | c0bd7467e33edc8565fd664c2872858690335f2a /server/sonar-web/src/main/js/apps/component-measures/components/bubbleChart/MeasureBubbleChartContainer.js | |
parent | 5686fcc7cc310e5603c4620d74e8cf679a38eeb2 (diff) | |
download | sonarqube-4e096de629fda4bbdba94d8823da3f92881d7a4c.tar.gz sonarqube-4e096de629fda4bbdba94d8823da3f92881d7a4c.zip |
reorganize store directories
move store/ outside of app/
move components/store/* to store/
Diffstat (limited to 'server/sonar-web/src/main/js/apps/component-measures/components/bubbleChart/MeasureBubbleChartContainer.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/component-measures/components/bubbleChart/MeasureBubbleChartContainer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/component-measures/components/bubbleChart/MeasureBubbleChartContainer.js b/server/sonar-web/src/main/js/apps/component-measures/components/bubbleChart/MeasureBubbleChartContainer.js index 029cee95b55..00534a6331c 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/components/bubbleChart/MeasureBubbleChartContainer.js +++ b/server/sonar-web/src/main/js/apps/component-measures/components/bubbleChart/MeasureBubbleChartContainer.js @@ -19,7 +19,7 @@ */ import { connect } from 'react-redux'; import MeasureBubbleChart from './BubbleChart'; -import { getMeasuresAppAllMetrics, getMeasuresAppComponent } from '../../../../app/store/rootReducer'; +import { getMeasuresAppAllMetrics, getMeasuresAppComponent } from '../../../../store/rootReducer'; const mapStateToProps = state => { return { |