From d2d6554e26c2918f75f2cc6092177677697dfbfc Mon Sep 17 00:00:00 2001 From: Michael Spalti Date: Sat, 17 Sep 2022 10:51:45 -0700 Subject: [PATCH] Second-level browse thumbnails fixed. --- .../browse-by-metadata-page.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.ts b/src/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.ts index e14532c2fd..4892493d74 100644 --- a/src/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.ts +++ b/src/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.ts @@ -144,7 +144,7 @@ export class BrowseByMetadataPageComponent implements OnInit { this.startsWith = +params.startsWith || params.startsWith; if (isNotEmpty(this.value)) { this.updatePageWithItems( - browseParamsToOptions(params, currentPage, currentSort, this.browseId, false), this.value, this.authority); + browseParamsToOptions(params, currentPage, currentSort, this.browseId, this.fetchThumbnails), this.value, this.authority); } else { this.updatePage(browseParamsToOptions(params, currentPage, currentSort, this.browseId, false)); }