Skip to content

Commit

Permalink
Fix: Add limit:1000 to saved searches to show all savedsearches for n…
Browse files Browse the repository at this point in the history
…ow (#1361)

Co-authored-by: Anna Iosif <[email protected]>
  • Loading branch information
Ifycode and Angamanga authored Sep 17, 2024
1 parent 996b3a5 commit 838f3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/sdk/src/lib/services/savedsearches.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class SavedsearchesService extends ResourceService<any> {
}

override get(): Observable<SavedsearchesResponse> {
return super.get();
return super.get('', { limit: 1000 }); // Temporary measure: Add limit of 1000 for now to show/get all savedsercahes
}

override getById(id: string | number): Observable<{ result: Savedsearch }> {
Expand Down

0 comments on commit 838f3e1

Please sign in to comment.