Skip to content

Commit

Permalink
[ACS-9010] Loading spinner is not shown on search results page when f…
Browse files Browse the repository at this point in the history
…iltering for files or folders (#4263)
  • Loading branch information
dominikiwanekhyland authored Nov 28, 2024
1 parent 4cb6e56 commit a37fec5
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@ export class SearchResultsComponent extends PageComponent implements OnInit {

this.queryBuilder.error.subscribe((err: any) => {
this.onSearchError(err);
}),

this.queryBuilder.filterQueryUpdate.subscribe(() => {
this.isLoading = true;
})
);

Expand Down

0 comments on commit a37fec5

Please sign in to comment.