diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2012-02-16 18:36:29 +0100 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2012-02-16 18:36:29 +0100 |
commit | 89c2abe481c82ce878e4142d9e115c4178b36e5b (patch) | |
tree | 8515ffdeca037c2544964ed80589e0ea6b69c6b2 /sonar-server | |
parent | d355d985d9aa003a9d74a0b8949b8ed4f77a7005 (diff) | |
download | sonarqube-89c2abe481c82ce878e4142d9e115c4178b36e5b.tar.gz sonarqube-89c2abe481c82ce878e4142d9e115c4178b36e5b.zip |
SONAR-1492 Fix small issue
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_active_rule_note.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_active_rule_note.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_active_rule_note.html.erb index cb6bbf6647a..f860b0fad78 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_active_rule_note.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_active_rule_note.html.erb @@ -51,7 +51,7 @@ </tr> <tr> <td colspan="2"> - <input type="submit" value="<%= note ? message('update_verb') : message('rules_configuration.add_note') -%>" name="commit" id="<%= submit_active_note_update_button_id -%>"/> + <input type="submit" value="<%= note ? message('update_verb') : message('rules_configuration.add_note') -%>" name="commit" id="<%= submit_active_note_update_button_id -%>" disabled="disabled"/> <a href="#" onclick="$('<%= active_note_detail_div_id -%>').show();$('<%= active_note_form_div_id -%>').hide();return false;"><%= message('cancel') %></a> </td> </tr> |