activeadmin (1.0.0.pre)
When I have 2 'columns' on same page, rails throws this message:
undefined method `span_size' for #Arbre::HTML::TextNode:0xaf250ddc
Here's an example:
ActiveAdmin.register_page "Dashboard" do
menu :priority => 1, :label => proc{ I18n.t("active_admin.dashboard") }
content :title => proc{ I18n.t("active_admin.dashboard") } do
columns do
end
columns do
end
end
end