aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/project-admin/store/rootReducer.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/project-admin/store/rootReducer.js')
-rw-r--r--server/sonar-web/src/main/js/apps/project-admin/store/rootReducer.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/project-admin/store/rootReducer.js b/server/sonar-web/src/main/js/apps/project-admin/store/rootReducer.js
index fabf41003ec..4eb6dec8e0e 100644
--- a/server/sonar-web/src/main/js/apps/project-admin/store/rootReducer.js
+++ b/server/sonar-web/src/main/js/apps/project-admin/store/rootReducer.js
@@ -50,7 +50,8 @@ export const getAllProfiles = state => nextGetAllProfiles(state.profiles);
export const getProjectProfiles = (state, projectKey) =>
getProfiles(state.profilesByProject, projectKey).map(profileKey =>
- getProfileByKey(state, profileKey));
+ getProfileByKey(state, profileKey)
+ );
export const getGateById = (state, gateId) => getGate(state.gates, gateId);