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.
select-type フィルタから「Any」オプションを削除するにはどうすればよいですか? ありがとう!
これは、すべての選択フィルターに対して無効にするモンキーパッチです。に貼り付け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