diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-10-01 16:03:24 +0200 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-10-02 15:17:09 +0200 |
commit | 715e3718a4c3eb163041a5ce8487d3b2d4a50181 (patch) | |
tree | 4db19d687197fd0e1d5ab313087cf5982e618792 | |
parent | 436d7d920ecc2b991a72e7c59914cfc0c1a4c5fd (diff) | |
download | sonarqube-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.hbs | 2 |
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> |