diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-09-28 18:11:03 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-09-28 18:11:03 +0200 |
commit | 3139da24dc02b3e16787df115a09b0fa0e833e6b (patch) | |
tree | bdf959d2c27659cc0b666258ed7ab2f65daf537b | |
parent | 2015a54459a346e1a852a562336811a328c9db8a (diff) | |
download | sonarqube-3139da24dc02b3e16787df115a09b0fa0e833e6b.tar.gz sonarqube-3139da24dc02b3e16787df115a09b0fa0e833e6b.zip |
Add HTML ID to the links of the filters popup
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/filters/search_path.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/search_path.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/search_path.html.erb index a3dc8ced1fe..07ac8785aa8 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/search_path.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/search_path.html.erb @@ -38,7 +38,7 @@ <% path_name=snapshot.path_name %> <%= path_name -%> </td> - <td><a href="#" onClick="selectPath(<%= snapshot.project_id-%>, '<%= escape_javascript(path_name) -%>')"><%= message('select_verb') -%></a></td> + <td><a id="select-<%= u(snapshot.project.key) -%>" href="#" onClick="selectPath(<%= snapshot.project_id-%>, '<%= escape_javascript(path_name) -%>')"><%= message('select_verb') -%></a></td> </tr> <% end end %> |