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/quality-gates/containers | |
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/quality-gates/containers')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-gates/containers/DetailsContainer.js | 2 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-gates/containers/QualityGatesAppContainer.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-gates/containers/DetailsContainer.js b/server/sonar-web/src/main/js/apps/quality-gates/containers/DetailsContainer.js index ae53d592b69..a134c697572 100644 --- a/server/sonar-web/src/main/js/apps/quality-gates/containers/DetailsContainer.js +++ b/server/sonar-web/src/main/js/apps/quality-gates/containers/DetailsContainer.js @@ -30,7 +30,7 @@ import { saveCondition } from '../store/actions'; import Details from '../components/Details'; -import { getQualityGatesAppState } from '../../../app/store/rootReducer'; +import { getQualityGatesAppState } from '../../../store/rootReducer'; const mapStateToProps = state => ( getQualityGatesAppState(state) 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) |