diff --git a/app/views/fields/_edit_custom_field_group.html.haml b/app/views/fields/_edit_custom_field_group.html.haml index af88b47e5b..604ec98983 100644 --- a/app/views/fields/_edit_custom_field_group.html.haml +++ b/app/views/fields/_edit_custom_field_group.html.haml @@ -2,7 +2,7 @@ = hook(:custom_field_top_section, self, :f => f) do -# produce inputs for custom fields that do not belong to a particular field group -# i.e. they belong to the 'custom_fields' group - - f.object.field_groups.select{|f| f.name == 'custom_fields'}.each do |field_group| + - f.object.field_groups.select{|fg| fg.name == 'custom_fields'}.each do |field_group| - if field_group.fields.present? - field_groups[field_group.tag.name.downcase] = "#{field_group.key}_container" if field_group.tag = render :partial => 'fields/group', :locals => {:f => f, :field_group => field_group}