diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-07-02 12:05:03 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-07-02 12:05:03 +0200 |
commit | 7253ae7224b2e842973da01f4f7ae9419fcc53cf (patch) | |
tree | a7758714dbbbe695eaaa66f7f7d3c422c38dddca | |
parent | 5c8f77eea7bfcefe1225f8fab05f67226757b36c (diff) | |
download | sonarqube-7253ae7224b2e842973da01f4f7ae9419fcc53cf.tar.gz sonarqube-7253ae7224b2e842973da01f4f7ae9419fcc53cf.zip |
Update some HTML id
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/issues/manage.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/manage.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/manage.html.erb index 67f29e04c80..2280c993880 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/issues/manage.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/issues/manage.html.erb @@ -113,7 +113,7 @@ <a id="copy-<%= filter.name.parameterize -%>" href="<%= ApplicationController.root_context -%>/issues/copy_form/<%= filter.id -%>" class="link-action open-modal"><%= message('copy') -%></a> <% if has_role?(:admin) %> - <a id="edit_system_<%= filter.name.parameterize -%>" href="<%= ApplicationController.root_context -%>/issues/edit_form/<%= filter.id -%>" class="link-action open-modal"><%= message('edit') -%></a> + <a id="edit_shared_<%= filter.name.parameterize -%>" href="<%= ApplicationController.root_context -%>/issues/edit_form/<%= filter.id -%>" class="link-action open-modal"><%= message('edit') -%></a> <%= link_to_action message('delete'), "#{ApplicationController.root_context}/issues/delete/#{filter.id}", :class => 'link-action link-red', |