Remove ActiveAdmin automatic link on show view
Anyone know how to remove the default link Active Admin creates in the show view for other resources? In the code below, if discipline
is a resource the user can edit and has an ActiveAdmin page, there is a link to the discipline. I want to remove this link.
show do
attributes_table do
row :id
row :discipline
row :name
end
end
```