Skip to content

Commit

Permalink
Fixed custom field handling of html entities.
Browse files Browse the repository at this point in the history
  • Loading branch information
steveyken committed Dec 8, 2014
1 parent 3eec525 commit d32f637
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/views/fields/_group_view.html.haml 100644 → 100755
Expand Up @@ -3,7 +3,8 @@
- groups.each_with_index do |group, i|
%tr
- group.each do |field|
= col(field.label, field.render_value(entity), (i == groups.size - 1) ? :last : nil)
= col(field.label, (i == groups.size - 1) ? :last : nil) do
= field.render_value(entity)
- if group.size == 1
%th.last
%td.last

0 comments on commit d32f637

Please sign in to comment.