diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-12-14 18:03:16 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-12-14 18:03:16 +0100 |
commit | cfaef377f3b8bffe51da8bbdd4838d961d63194b (patch) | |
tree | fda257602d7ce0ca0bd407cc4a8cc4699f4f7b6a /sonar-server | |
parent | 4ca61315152202f28fab2e050fe5134c5d40dc04 (diff) | |
download | sonarqube-cfaef377f3b8bffe51da8bbdd4838d961d63194b.tar.gz sonarqube-cfaef377f3b8bffe51da8bbdd4838d961d63194b.zip |
Change location of buttons in management of filters
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/measures/manage.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/measures/manage.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/measures/manage.html.erb index a130ddb9c52..30810c5d2ad 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/measures/manage.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/measures/manage.html.erb @@ -64,10 +64,10 @@ <% end %> </td> <td class="thin nowrap right"> - <a id="edit_<%= filter.name.parameterize -%>" href="<%= ApplicationController.root_context -%>/measures/edit_form/<%= filter.id -%>" class="link-action open-modal"><%= message('edit') -%></a> - <a id="copy-<%= filter.name.parameterize -%>" href="<%= ApplicationController.root_context -%>/measures/copy_form/<%= filter.id -%>" class="link-action open-modal"><%= message('copy') -%></a> + <a id="edit_<%= filter.name.parameterize -%>" href="<%= ApplicationController.root_context -%>/measures/edit_form/<%= filter.id -%>" class="link-action open-modal"><%= message('edit') -%></a> + <%= link_to_action message('delete'), "#{ApplicationController.root_context}/measures/delete/#{filter.id}", :class => 'link-action link-red', :id => "delete_#{filter.name.parameterize}", |