##// END OF EJS Templates
Fixed: Long text custom fields displayed without line breaks...
Jean-Philippe Lang -
r573:f816d4f37844
parent child
Show More
@@ -34,7 +34,7
34 34 <tr>
35 35 <% n = 0
36 36 for custom_value in @custom_values %>
37 <td><b><%= custom_value.custom_field.name %> :</b></td><td><%= h(show_value(custom_value)) %></td>
37 <td valign="top"><b><%= custom_value.custom_field.name %> :</b></td><td><%= simple_format(h(show_value(custom_value))) %></td>
38 38 <% n = n + 1
39 39 if (n > 1)
40 40 n = 0 %>
@@ -109,6 +109,7 end %>
109 109 <% form_tag({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>
110 110 <p><label for="notes"><%=l(:field_notes)%></label>
111 111 <%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %></p>
112 <%= wikitoolbar_for 'notes' %>
112 113 <%= submit_tag l(:button_add) %>
113 114 <% end %>
114 115 </div>
General Comments 0
You need to be logged in to leave comments. Login now