[ACS-9010] Loading spinner is not shown on search results page when filtering for files or folders (#4263)

This commit is contained in:
dominikiwanekhyland 2024-11-28 10:29:45 +01:00 committed by GitHub
parent 4cb6e56911
commit a37fec5a7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -204,6 +204,10 @@ export class SearchResultsComponent extends PageComponent implements OnInit {
this.queryBuilder.error.subscribe((err: any) => { this.queryBuilder.error.subscribe((err: any) => {
this.onSearchError(err); this.onSearchError(err);
}),
this.queryBuilder.filterQueryUpdate.subscribe(() => {
this.isLoading = true;
}) })
); );