我在我的Rails应用中使用Active Admin,资源的默认页面有一个看似非常有用的注释字段。我为我的资源创建了一个自定义显示页面,现在评论部分已经消失。我该如何添加回来?
答案 0 :(得分:3)
ActiveAdmin.register Project do
show do
attributes_table :name, :description
active_admin_comments # Add this line for comment block
end
end
最后在show block中使用active_admin_comments。来源ActiveAdmin Source