I use the ActiveAdmin rails attribute and have several filters configured for one of my models. For one of the string filters, I would like to set a drop-down list of the search type ("Contains", "Equals", "Start with", "Ends with") by default, "Equals" instead of "Contains".
Also, similarly, I would like to set the default value of “Big Than” instead of “Equals” for one of my numerical filters.
Here's the corresponding configuration ...
filter :message filter :likes_count, as: :numeric
filter ruby-on-rails activeadmin
user3032911
source share