class ActiveAdmin::Views::PaginatedCollection

def add_child(*args, &block)

Override add_child to insert all children into the @contents div
def add_child(*args, &block)
  if @built
    @contents.add_child(*args, &block)
  else
    super
  end
end