##// END OF EJS Templates
Rails4: replace ActionView::Helpers::TextHelper#truncate by String#truncate at app/views/issues/_list_simple.html.erb...
Toshi MARUYAMA -
r12566:70ab59354fd6
parent child
Show More
@@ -17,7 +17,7
17 <td class="project"><%= link_to_project(issue.project) %></td>
17 <td class="project"><%= link_to_project(issue.project) %></td>
18 <td class="tracker"><%= issue.tracker %></td>
18 <td class="tracker"><%= issue.tracker %></td>
19 <td class="subject">
19 <td class="subject">
20 <%= link_to(truncate(issue.subject, :length => 60), issue_path(issue)) %> (<%= issue.status %>)
20 <%= link_to(issue.subject.truncate(60), issue_path(issue)) %> (<%= issue.status %>)
21 </td>
21 </td>
22 </tr>
22 </tr>
23 <% end %>
23 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now