]> source.dussan.org Git - redmine.git/commitdiff
Add CSS class to project custom fields (#30977).
authorGo MAEDA <maeda@farend.jp>
Wed, 6 Mar 2019 22:31:14 +0000 (22:31 +0000)
committerGo MAEDA <maeda@farend.jp>
Wed, 6 Mar 2019 22:31:14 +0000 (22:31 +0000)
Patch by Go MAEDA.

git-svn-id: http://svn.redmine.org/redmine/trunk@17931 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/projects/show.html.erb
test/functional/projects_controller_test.rb

index 923bc03e8b25f3bbd1b4d10ccb1499fe7dc6e089..da1c53d98dc26b039d34065ff6d8ace98cd64329 100644 (file)
@@ -30,7 +30,7 @@
     <li><span class="label"><%=l(:field_homepage)%>:</span> <%= link_to_if uri_with_safe_scheme?(@project.homepage), @project.homepage, @project.homepage %></li>
   <% end %>
   <% render_custom_field_values(@project) do |custom_field, formatted| %>
-    <li><span class="label"><%= custom_field.name %>:</span> <%= formatted %></li>
+    <li class="cf_<%= custom_field.id %>"><span class="label"><%= custom_field.name %>:</span> <%= formatted %></li>
   <% end %>
   </ul>
   <% end %>
index 16f42ac4dec614fb2803236d20d7257bd29d85af..3c931c60b296ff6d0ff83138cebc429a9a130f17 100644 (file)
@@ -477,7 +477,7 @@ class ProjectsControllerTest < Redmine::ControllerTest
       }
     assert_response :success
 
-    assert_select 'li', :text => /Development status/
+    assert_select 'li[class=?]', 'cf_3', :text => /Development status/
   end
 
   def test_show_should_not_display_hidden_custom_fields