class ActiveAdmin::Inputs::Filters::TextInput

def input_html_options

def input_html_options
  {
    cols: builder.default_text_area_width,
    rows: builder.default_text_area_height
  }.merge(super)
end

def to_html

def to_html
  input_wrapping do
    label_html <<
    builder.text_area(method, input_html_options)
  end
end