Skip to content

Commit

Permalink
lint and bundle update
Browse files Browse the repository at this point in the history
  • Loading branch information
srappel committed Dec 26, 2024
1 parent cb74d83 commit 44a05cd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ GEM
bcrypt_pbkdf (1.1.1)
bcrypt_pbkdf (1.1.1-arm64-darwin)
benchmark (0.4.0)
bigdecimal (3.1.8)
bigdecimal (3.1.9)
bindex (0.8.1)
blacklight (7.40.0)
deprecation
Expand Down Expand Up @@ -343,9 +343,9 @@ GEM
net-protocol
net-ssh (7.3.0)
nio4r (2.7.4)
nokogiri (1.17.2-arm64-darwin)
nokogiri (1.18.0-arm64-darwin)
racc (~> 1.4)
nokogiri (1.17.2-x86_64-linux)
nokogiri (1.18.0-x86_64-linux-gnu)
racc (~> 1.4)
orm_adapter (0.5.0)
ostruct (0.6.1)
Expand Down Expand Up @@ -414,7 +414,7 @@ GEM
redis-client (>= 0.22.0)
redis-client (0.23.0)
connection_pool
regexp_parser (2.9.3)
regexp_parser (2.10.0)
reline (0.6.0)
io-console (~> 0.5)
responders (3.1.1)
Expand Down
16 changes: 8 additions & 8 deletions app/controllers/catalog_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,15 @@ class CatalogController < ApplicationController
config.add_show_field Settings.FIELDS.ALTERNATIVE_TITLE, label: "Alternative Title", itemprop: "alt_title"
config.add_show_field Settings.FIELDS.DESCRIPTION, label: "Description", itemprop: "description",
helper_method: :truncate_render_html_value
config.add_show_field(
Settings.FIELDS.REFERENCES,
label: "Resource Link",
accessor: [:external_url],
if: proc { |_, _, doc| doc.external_url },
helper_method: :render_references_url
)
config.add_show_field(
Settings.FIELDS.REFERENCES,
label: "Resource Link",
accessor: [:external_url],
if: proc { |_, _, doc| doc.external_url },
helper_method: :render_references_url
)
config.add_show_field Settings.FIELDS.IDENTIFIER, label: "Identifier", itemprop: "identifier"
config.add_show_field Settings.FIELDS.LANGUAGE, label: 'Language', itemprop: 'language'
config.add_show_field Settings.FIELDS.LANGUAGE, label: "Language", itemprop: "language"
config.add_show_field Settings.FIELDS.CREATOR, label: "Creator", itemprop: "creator", link_to_facet: true
config.add_show_field Settings.FIELDS.PUBLISHER, label: "Publisher", itemprop: "publisher", link_to_facet: true
config.add_show_field Settings.FIELDS.PROVIDER, label: "Provider", link_to_facet: true
Expand Down

0 comments on commit 44a05cd

Please sign in to comment.