Merge pull request #1434 from atmire/shared-feature-authority-control

Allow facets to be authority controlled
This commit is contained in:
Tim Donohue
2022-01-13 08:24:56 -06:00
committed by GitHub
10 changed files with 65 additions and 9 deletions

View File

@@ -63,7 +63,7 @@ export class BrowseByDatePageComponent extends BrowseByMetadataPageComponent {
this.browseId = params.id || this.defaultBrowseId;
this.startsWith = +params.startsWith || params.startsWith;
const searchOptions = browseParamsToOptions(params, currentPage, currentSort, this.browseId);
this.updatePageWithItems(searchOptions, this.value);
this.updatePageWithItems(searchOptions, this.value, undefined);
this.updateParent(params.scope);
this.updateStartsWithOptions(this.browseId, metadataKeys, params.scope);
}));