aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>2014-10-01 16:03:24 +0200
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>2014-10-02 15:17:09 +0200
commit715e3718a4c3eb163041a5ce8487d3b2d4a50181 (patch)
tree4db19d687197fd0e1d5ab313087cf5982e618792
parent436d7d920ecc2b991a72e7c59914cfc0c1a4c5fd (diff)
downloadsonarqube-715e3718a4c3eb163041a5ce8487d3b2d4a50181.tar.gz
sonarqube-715e3718a4c3eb163041a5ce8487d3b2d4a50181.zip
SONAR-5579 Show what the default value is on boolean rule parameters
-rw-r--r--server/sonar-web/src/main/hbs/coding-rules/coding-rules-quality-profile-activation.hbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/hbs/coding-rules/coding-rules-quality-profile-activation.hbs b/server/sonar-web/src/main/hbs/coding-rules/coding-rules-quality-profile-activation.hbs
index 560972b992b..9e48279434d 100644
--- a/server/sonar-web/src/main/hbs/coding-rules/coding-rules-quality-profile-activation.hbs
+++ b/server/sonar-web/src/main/hbs/coding-rules/coding-rules-quality-profile-activation.hbs
@@ -45,7 +45,7 @@
{{else}}
{{#eq type 'BOOLEAN'}}
<select name="{{key}}" value="{{value}}">
- <option value="{{defaultValue}}">{{t 'default'}}</option>
+ <option value="{{defaultValue}}">{{t 'default'}} ({{t defaultValue}})</option>
<option value="true"{{#eq value 'true'}} selected="selected"{{/eq}}>{{t 'true'}}</option>
<option value="false"{{#eq value 'false'}} selected="selected"{{/eq}}>{{t 'false'}}</option>
</select>