mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
111731: Fixed scope not correctly resetting to no scope when clicking on "Search all of DSpace" in the search scope selector
This commit is contained in:
@@ -294,6 +294,7 @@ describe('SearchComponent', () => {
|
|||||||
|
|
||||||
const expectedSearchOptions = Object.assign(paginatedSearchOptions$.value, {
|
const expectedSearchOptions = Object.assign(paginatedSearchOptions$.value, {
|
||||||
configuration: 'default',
|
configuration: 'default',
|
||||||
|
scope: '',
|
||||||
sort: sortOptionsList[0],
|
sort: sortOptionsList[0],
|
||||||
});
|
});
|
||||||
expect(comp.currentConfiguration$).toBeObservable(cold('b', {
|
expect(comp.currentConfiguration$).toBeObservable(cold('b', {
|
||||||
|
@@ -356,7 +356,7 @@ export class SearchComponent implements OnDestroy, OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.currentScope$ = this.routeService.getQueryParameterValue('scope').pipe(
|
this.currentScope$ = this.routeService.getQueryParameterValue('scope').pipe(
|
||||||
map((routeValue: string) => hasValue(routeValue) ? routeValue : this.scope),
|
map((routeValue: string) => hasValue(routeValue) ? routeValue : this.scope ?? ''),
|
||||||
);
|
);
|
||||||
|
|
||||||
this.isSidebarCollapsed$ = this.isSidebarCollapsed();
|
this.isSidebarCollapsed$ = this.isSidebarCollapsed();
|
||||||
|
Reference in New Issue
Block a user