class ActiveAdmin::Views::TableFor

def build_table_cell(col, resource)

def build_table_cell(col, resource)
  td class: col.html_class, "data-column": col.title_id.presence do
    html = helpers.format_attribute(resource, col.data)
    # Don't add the same Arbre twice, while still allowing format_attribute to call status_tag
    current_arbre_element << html unless current_arbre_element.children.include? html
  end
end