diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2017-03-30 14:09:03 +0200 |
---|---|---|
committer | Stas Vilchik <stas-vilchik@users.noreply.github.com> | 2017-04-03 10:38:52 +0200 |
commit | 2c890d852dd6c355a64679e1d603c17bfac29bc5 (patch) | |
tree | 541bf0a796a10944ecf5ce72f719edc2d0321cff /server/sonar-web/src/main/js/apps/overview | |
parent | 0f56fb56a40c1ee72f68dd170b12202e690086d9 (diff) | |
download | sonarqube-2c890d852dd6c355a64679e1d603c17bfac29bc5.tar.gz sonarqube-2c890d852dd6c355a64679e1d603c17bfac29bc5.zip |
SONAR-8927 Change format of quality profile permalinks
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview')
-rw-r--r-- | server/sonar-web/src/main/js/apps/overview/meta/MetaQualityProfiles.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/meta/MetaQualityProfiles.js b/server/sonar-web/src/main/js/apps/overview/meta/MetaQualityProfiles.js index fb5c176df85..13484c3ca0a 100644 --- a/server/sonar-web/src/main/js/apps/overview/meta/MetaQualityProfiles.js +++ b/server/sonar-web/src/main/js/apps/overview/meta/MetaQualityProfiles.js @@ -85,8 +85,8 @@ class MetaQualityProfiles extends React.Component { const languageName = languageFromStore ? languageFromStore.name : profile.language; const path = this.props.customOrganizations - ? getQualityProfileUrl(profile.key, this.props.component.organization) - : getQualityProfileUrl(profile.key); + ? getQualityProfileUrl(profile.name, profile.language, this.props.component.organization) + : getQualityProfileUrl(profile.name, profile.language); const inner = ( <div className="text-ellipsis"> |