railsadminteam / rails_admin

RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data
MIT License
7.87k stars 2.25k forks source link

UI don't hide history_show and don't display clone from rails_admin_clone #3613

Closed castean closed 1 year ago

castean commented 1 year ago

Describe the bug When i upgrade and app from ruby 2.5 to 3.1 rails_admin with rails_admin_clone not show options on UI

Reproduction steps My config/rails_admin.yml has config.actions do

root actions

dashboard                     # mandatory
# collection actions
index                         # mandatory
new
bulk_delete
clone                         # Add the clone action
custom action 1
custom action 2
custom action 3
custom action 4
export
import
# member actions
show
edit
delete

end

But my User Interface not showing me the clone or customer actions

Expected behavior The UI should hide history_index, history_show and shows me the custom actions and clone

Additional context

codealchemy commented 1 year ago

This doesn't appear to be an issue with this project - please open this issue in the source repo (https://github.com/dalpo/rails_admin_clone)

castean commented 1 year ago

the problems is that even if rails_admin_clone is not installed .. the history_index, and history_show is always present on my UI and my customer actions set are not display. and with my previous version all works as was expected. but now with the upgrade not

codealchemy commented 1 year ago

the history_index, and history_show is always present on my UI

Can you please share the reproduction steps without rails_admin_clone (ideally using the dummy_app in this project used for tests)? Did this come up when you were updating only Ruby, or were gem bumps involved as well (ie. rails_admin, rails, rails_admin_clone)?