Minor comment update to configs.

This commit is contained in:
Michael Spalti
2022-09-09 14:28:52 -07:00
parent aad0085d61
commit 8ff9f81247
4 changed files with 4 additions and 4 deletions

View File

@@ -168,7 +168,7 @@ browseBy:
fiveYearLimit: 30 fiveYearLimit: 30
# The absolute lowest year to display in the dropdown (only used when no lowest date can be found for all items) # The absolute lowest year to display in the dropdown (only used when no lowest date can be found for all items)
defaultLowerLimit: 1900 defaultLowerLimit: 1900
# If true, thumbnail images for items will be added to search and browse result lists. # If true, thumbnail images for items will be added to BOTH search and browse result lists.
showItemThumbnails: true showItemThumbnails: true
# Item Config # Item Config

View File

@@ -20,7 +20,7 @@ export interface BrowseByConfig extends Config {
defaultLowerLimit: number; defaultLowerLimit: number;
/** /**
* If true, thumbnail images for items will be added to search and browse result lists. * If true, thumbnail images for items will be added to BOTH search and browse result lists.
*/ */
showItemThumbnails: boolean; showItemThumbnails: boolean;
} }

View File

@@ -206,7 +206,7 @@ export class DefaultAppConfig implements AppConfig {
fiveYearLimit: 30, fiveYearLimit: 30,
// The absolute lowest year to display in the dropdown (only used when no lowest date can be found for all items) // The absolute lowest year to display in the dropdown (only used when no lowest date can be found for all items)
defaultLowerLimit: 1900, defaultLowerLimit: 1900,
// Whether to add item thumbnail images to browse and search result lists. // Whether to add item thumbnail images to BOTH browse and search result lists.
showItemThumbnails: true showItemThumbnails: true
}; };

View File

@@ -199,7 +199,7 @@ export const environment: BuildConfig = {
fiveYearLimit: 30, fiveYearLimit: 30,
// The absolute lowest year to display in the dropdown (only used when no lowest date can be found for all items) // The absolute lowest year to display in the dropdown (only used when no lowest date can be found for all items)
defaultLowerLimit: 1900, defaultLowerLimit: 1900,
// Whether to add item thumbnail images to browse and search result lists. // Whether to add item thumbnail images to BOTH browse and search result lists.
showItemThumbnails: true showItemThumbnails: true
}, },