module Blacklight class Configuration::FacetField < Blacklight::Configuration::SolrField def normalize! blacklight_config = nil self.query.stringify_keys! if self.query if self.single and self.tag.blank? and self.ex.blank? self.tag = "#{self.field}_single" self.ex = "#{self.field}_single" end self.collapse = true if self.collapse.nil? self.show = true if self.show.nil? self.if = self.show if self.if.nil? super end end end