diff options
author | David Gageot <david@gageot.net> | 2012-11-09 13:37:15 +0100 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2012-11-09 13:37:15 +0100 |
commit | be23bce3877f461d968a2922a26f9bdd36ce356e (patch) | |
tree | b1e7eb1e34dec9bdc2b2b1775c5af006559eb2f1 /sonar-server | |
parent | 571825f60e9dde56e265cd38fe596ddbd7defad5 (diff) | |
download | sonarqube-be23bce3877f461d968a2922a26f9bdd36ce356e.tar.gz sonarqube-be23bce3877f461d968a2922a26f9bdd36ce356e.zip |
SONAR-3831 Displaying project key in "Bulk deletion"
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb index 9d05302feac..70ccdecf0d0 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb @@ -51,6 +51,7 @@ <input type="hidden" id="all_resources" name="all_resources" value=""/> <% end %> </th> + <th></th> </tr> </thead> <tbody> @@ -61,7 +62,9 @@ </td> <td> <%= resource.name -%> - <br/><span class="small gray"><%= resource.key -%></span></td> + </td> + <td> + <span class="small gray"><%= resource.key -%></span></td> </td> </tr> <% end %> |