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-01 18:53:14 +0200
commitdc74893622e4965a5d9ad0c6f9a9b0b43f2140ed (patch)
tree99b6894360516d91ba10b9bc455ba06143554d32
parent3ca15a1d0624dc29b6442c49b4af8916164c09e5 (diff)
downloadsonarqube-dc74893622e4965a5d9ad0c6f9a9b0b43f2140ed.tar.gz
sonarqube-dc74893622e4965a5d9ad0c6f9a9b0b43f2140ed.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>