diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2018-12-18 11:36:11 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-12-24 20:20:54 +0100 |
commit | 772a9e2f8ee92d98fc6f0114bcea700d8c3e8670 (patch) | |
tree | de793c7c8eccffbd6682e9161d5745a24b5ce19c /server/sonar-web/src/main/js/apps/permissions/project | |
parent | 0225aef248c18e61246b1f50e4ec189e8192511a (diff) | |
download | sonarqube-772a9e2f8ee92d98fc6f0114bcea700d8c3e8670.tar.gz sonarqube-772a9e2f8ee92d98fc6f0114bcea700d8c3e8670.zip |
SONARCLOUD-235 Hide QG and QP links on Overview for non-members
Diffstat (limited to 'server/sonar-web/src/main/js/apps/permissions/project')
-rw-r--r-- | server/sonar-web/src/main/js/apps/permissions/project/components/AppContainer.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/permissions/project/components/AppContainer.ts b/server/sonar-web/src/main/js/apps/permissions/project/components/AppContainer.ts index ac9900803c7..baf32b46814 100644 --- a/server/sonar-web/src/main/js/apps/permissions/project/components/AppContainer.ts +++ b/server/sonar-web/src/main/js/apps/permissions/project/components/AppContainer.ts @@ -20,7 +20,7 @@ import { connect } from 'react-redux'; import App from './App'; import { getCurrentUser, getOrganizationByKey, Store } from '../../../../store/rootReducer'; -import { fetchOrganization } from '../../../organizations/actions'; +import { fetchOrganization } from '../../../../store/rootActions'; interface OwnProps { component: T.Component; |