Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从选择类型过滤器中删除“任何”选项?谢谢!
这是一个为所有选择过滤器禁用它的猴子补丁。贴进去initializers/active_admin.rb。
initializers/active_admin.rb
module ActiveAdmin module Inputs class FilterSelectInput < ::Formtastic::Inputs::SelectInput def input_options super.merge(:include_blank => false) end end end end