How to add a button in Active Admin that behaves similar to the browser's back button.
Thanks.
How to add a button in Active Admin that behaves similar to the browser's back button.
Thanks.
This is a working solution i'm currently using :
ActiveAdmin.register User do
action_item 'Back', only: :index do
link_to('Back', :back)
end
end