diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/component-measures/home')
4 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/apps/component-measures/home/AllMeasuresContainer.js b/server/sonar-web/src/main/js/apps/component-measures/home/AllMeasuresContainer.js index d02d06bfcc3..b690cf7e21c 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/home/AllMeasuresContainer.js +++ b/server/sonar-web/src/main/js/apps/component-measures/home/AllMeasuresContainer.js @@ -23,7 +23,7 @@ import { getMeasuresAppHomeDomains, getMeasuresAppHomePeriods, getMeasuresAppComponent -} from '../../../app/store/rootReducer'; +} from '../../../store/rootReducer'; const mapStateToProps = state => { return { diff --git a/server/sonar-web/src/main/js/apps/component-measures/home/DomainMeasuresContainer.js b/server/sonar-web/src/main/js/apps/component-measures/home/DomainMeasuresContainer.js index 53094eb9bc7..858b09dbe1e 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/home/DomainMeasuresContainer.js +++ b/server/sonar-web/src/main/js/apps/component-measures/home/DomainMeasuresContainer.js @@ -23,7 +23,7 @@ import { getMeasuresAppHomeDomains, getMeasuresAppHomePeriods, getMeasuresAppComponent -} from '../../../app/store/rootReducer'; +} from '../../../store/rootReducer'; const mapStateToProps = state => { return { diff --git a/server/sonar-web/src/main/js/apps/component-measures/home/HomeContainer.js b/server/sonar-web/src/main/js/apps/component-measures/home/HomeContainer.js index 58e3285c181..9c16840b0c1 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/home/HomeContainer.js +++ b/server/sonar-web/src/main/js/apps/component-measures/home/HomeContainer.js @@ -25,7 +25,7 @@ import { getMeasuresAppHomeDomains, getMeasuresAppHomePeriods, getMeasuresAppComponent -} from '../../../app/store/rootReducer'; +} from '../../../store/rootReducer'; const mapStateToProps = state => { return { diff --git a/server/sonar-web/src/main/js/apps/component-measures/home/actions.js b/server/sonar-web/src/main/js/apps/component-measures/home/actions.js index 006d4680523..04a2f11da5c 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/home/actions.js +++ b/server/sonar-web/src/main/js/apps/component-measures/home/actions.js @@ -21,7 +21,7 @@ import { startFetching, stopFetching } from '../store/statusActions'; import { getMeasuresAndMeta } from '../../../api/measures'; import { getLeakPeriod } from '../../../helpers/periods'; import { getLeakValue } from '../utils'; -import { getMeasuresAppComponent, getMeasuresAppAllMetrics } from '../../../app/store/rootReducer'; +import { getMeasuresAppComponent, getMeasuresAppAllMetrics } from '../../../store/rootReducer'; export const RECEIVE_MEASURES = 'measuresApp/home/RECEIVE_MEASURES'; |