aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/quality-gates/containers/QualityGatesAppContainer.js
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2016-12-09 15:44:24 +0100
committerStas Vilchik <vilchiks@gmail.com>2016-12-09 17:16:20 +0100
commit4e096de629fda4bbdba94d8823da3f92881d7a4c (patch)
treec0bd7467e33edc8565fd664c2872858690335f2a /server/sonar-web/src/main/js/apps/quality-gates/containers/QualityGatesAppContainer.js
parent5686fcc7cc310e5603c4620d74e8cf679a38eeb2 (diff)
downloadsonarqube-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/quality-gates/containers/QualityGatesAppContainer.js')
-rw-r--r--server/sonar-web/src/main/js/apps/quality-gates/containers/QualityGatesAppContainer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-gates/containers/QualityGatesAppContainer.js b/server/sonar-web/src/main/js/apps/quality-gates/containers/QualityGatesAppContainer.js
index 4eaf763bb2b..033660a7f38 100644
--- a/server/sonar-web/src/main/js/apps/quality-gates/containers/QualityGatesAppContainer.js
+++ b/server/sonar-web/src/main/js/apps/quality-gates/containers/QualityGatesAppContainer.js
@@ -21,7 +21,7 @@ import { connect } from 'react-redux';
import { setState, addQualityGate, deleteQualityGate } from '../store/actions';
import QualityGateApp from '../components/QualityGatesApp';
-import { getQualityGatesAppState } from '../../../app/store/rootReducer';
+import { getQualityGatesAppState } from '../../../store/rootReducer';
const mapStateToProps = state => (
getQualityGatesAppState(state)