Sha256: 8a67d6fa44e9f42dff27271a02a10d2fa9001e4f8b5bb30062258f6a04caa3df
Contents?: true
Size: 420 Bytes
Versions: 21
Compression:
Stored size: 420 Bytes
Contents
# frozen_string_literal: true module Blacklight class FacetFieldComponent < Blacklight::Component renders_one :label renders_one :body # @param [Blacklight::FacetFieldPresenter] facet_field def initialize(facet_field:) @facet_field = facet_field end def html_id "facet-#{@facet_field.key.parameterize}" end def header_html_id "#{html_id}-header" end end end
Version data entries
21 entries across 21 versions & 2 rubygems