diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-09-11 11:54:20 +0200 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-09-11 11:54:20 +0200 |
commit | 8a250c87a433d91268a7a96ec8d76b1a026706bb (patch) | |
tree | 3f81dc9ab9628ab2de06ad5765b7424cadb63efa | |
parent | 56dc977f3e8f02cda5d75e7484bd83bffc84fa32 (diff) | |
download | sonarqube-8a250c87a433d91268a7a96ec8d76b1a026706bb.tar.gz sonarqube-8a250c87a433d91268a7a96ec8d76b1a026706bb.zip |
SONAR-4658 Fix missing CSS class declaration on subcategory description
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb index df33efeeda0..355f48d0be2 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb @@ -30,7 +30,7 @@ <% end -%> <% if @subcategory.key != @category.key && !subcategory_desc(@category, @subcategory).blank? -%> <tr> - <td><%= subcategory_desc(@category, @subcategory) -%> </td> + <td class="categoryDescription"><%= subcategory_desc(@category, @subcategory) -%> </td> </tr> <% end -%> </thead> |