Skip to content

Commit

Permalink
[webui] Refactor project status page
Browse files Browse the repository at this point in the history
Get rid of unused and duplicate raw and html_safe calls.
  • Loading branch information
ChrisBr committed Oct 30, 2015
1 parent c7f837a commit 301e24d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/api/app/views/webui/project/status.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@
<% end %>
<td>
<span class="hidden"><%= sortkey %></span>
<%= raw outs.join("<br/>".html_safe) -%>
<% outs.each do |out| %>
<%= out %> <br />
<% end %>
</td>
</tr>
<% end %>
Expand Down

0 comments on commit 301e24d

Please sign in to comment.