aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main')
-rw-r--r--server/sonar-web/src/main/hbs/quality-profiles/quality-profiles-profile-details.hbs2
-rw-r--r--server/sonar-web/src/main/js/quality-profiles/helpers.js3
2 files changed, 2 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/hbs/quality-profiles/quality-profiles-profile-details.hbs b/server/sonar-web/src/main/hbs/quality-profiles/quality-profiles-profile-details.hbs
index b1c487315c4..554aebc60a0 100644
--- a/server/sonar-web/src/main/hbs/quality-profiles/quality-profiles-profile-details.hbs
+++ b/server/sonar-web/src/main/hbs/quality-profiles/quality-profiles-profile-details.hbs
@@ -4,7 +4,7 @@
</header>
<p>
<a class="big" href="{{link rulesSearchUrl}}">{{formatMeasure activeRuleCount 'INT'}}</a>
- activate rules
+ {{tp 'quality_profile.x_active_rules' ''}}
</p>
{{#notEmpty rulesSeverities}}
<div class="abs-width-400 spacer-top">
diff --git a/server/sonar-web/src/main/js/quality-profiles/helpers.js b/server/sonar-web/src/main/js/quality-profiles/helpers.js
index a385e045af6..d241c123e17 100644
--- a/server/sonar-web/src/main/js/quality-profiles/helpers.js
+++ b/server/sonar-web/src/main/js/quality-profiles/helpers.js
@@ -20,8 +20,7 @@
(function () {
Handlebars.registerHelper('profileUrl', function (key) {
- //FIXME change me
- return baseUrl + '/quality_profiles/show?key=' + encodeURIComponent(key);
+ return baseUrl + '/profiles/show?key=' + encodeURIComponent(key);
});
Handlebars.registerHelper('exporterUrl', function (profile, exporterKey) {