You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reported line activeadmin (1.4.3) lib/active_admin/inputs/filters/select_input.rb
Active admin setup:
ActiveAdmin.register SellOrder do
actions :all, :except => [:new, :edit, :destroy]
index do
selectable_column
column :name
column :user
column "Domains" do |sell_order|
sell_order.domains.count
end
column :state
actions
end
filter :name
filter :state, as: :select, collection: SellOrder.state_machine.states.map(&:name)
filter :created_at
show do
...
end
end
Investigation activeadmin-mongoid substitutes method searchable_method_name with broken equivalent, while original method itself works like a charm
The text was updated successfully, but these errors were encountered:
Spec:
Error
undefined method
+' for nil:NilClass`Reported line
activeadmin (1.4.3) lib/active_admin/inputs/filters/select_input.rb
Active admin setup:
Investigation
activeadmin-mongoid
substitutes method searchable_method_name with broken equivalent, while original method itself works like a charmThe text was updated successfully, but these errors were encountered: