class Blacklight::Configuration::NullDisplayField
Returned if no config is defined for a display field in the Blacklight::Configuration
Public Class Methods
new(field_or_hash = nil)
click to toggle source
Calls superclass method
Blacklight::Configuration::DisplayField::new
# File lib/blacklight/configuration/null_display_field.rb, line 6 def initialize(field_or_hash = nil) case field_or_hash when String, Symbol super(field: field_or_hash) else super end normalize! end