Skip to content
This repository has been archived by the owner on Oct 31, 2020. It is now read-only.

Commit

Permalink
Update field configurations; Fixes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeck committed Oct 16, 2017
1 parent baf0f60 commit 65c1e31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/controllers/catalog_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ class CatalogController < ApplicationController

# solr fields to be displayed in the index (search results) view
# The ordering of the field names is the order of the display
config.add_index_field 'title_display', label: 'Title'
config.add_index_field 'title_vern_display', label: 'Title'
# config.add_index_field 'title_display', label: 'Title'
config.add_index_field 'title_vern_display', label: 'Vernacular title'
config.add_index_field 'author_display', label: 'Author'
config.add_index_field 'author_vern_display', label: 'Author'
config.add_index_field 'format', label: 'Format'
Expand All @@ -108,7 +108,7 @@ class CatalogController < ApplicationController
config.add_show_field 'format', label: 'Format'
config.add_show_field 'url_fulltext_display', label: 'URL'
config.add_show_field 'url_suppl_display', label: 'More Information'
config.add_show_field 'language_facet', label: 'Language'
config.add_show_field 'language_facet', label: 'Language', link_to_facet: true
config.add_show_field 'published_display', label: 'Published'
config.add_show_field 'published_vern_display', label: 'Published'
config.add_show_field 'lc_callnum_display', label: 'Call number'
Expand Down

0 comments on commit 65c1e31

Please sign in to comment.