From 26c2600790d61b140b895f05050df9dd31f52393 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Fri, 15 Jul 2016 15:10:03 +0200 Subject: [PATCH] SONAR-7862 Add links to projects on profile page --- .../apps/quality-profiles/details/ProfileProjects.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileProjects.js b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileProjects.js index 836e47653cc..6bdf18fca16 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileProjects.js +++ b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileProjects.js @@ -23,6 +23,7 @@ import QualifierIcon from '../../../components/shared/qualifier-icon'; import { ProfileType } from '../propTypes'; import { getProfileProjects } from '../../../api/quality-profiles'; import { translate } from '../../../helpers/l10n'; +import { getComponentUrl } from '../../../helpers/urls'; export default class ProfileProjects extends React.Component { static propTypes = { @@ -111,9 +112,12 @@ export default class ProfileProjects extends React.Component {
  • - - {' '} - {project.name} + + + {' '} + {project.name} +
  • ))} -- 2.39.5