Skip to content
Snippets Groups Projects
Commit 954f80bd authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FIX #11764 TIME 0:05 now displaying 25 resources instead of 10 in result

parent 46057b9a
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@
[currentBasketInfo]="currentBasketInfo"></app-tools-list>
</span>
<span>
<mat-paginator #paginatorResultList [length]="resultsLength" [pageSize]="10"
<mat-paginator #paginatorResultList [length]="resultsLength" [pageSize]="25"
class="paginatorResultList"></mat-paginator>
</span>
</div>
......
......@@ -472,7 +472,7 @@ export class ResultListHttpDao {
getRepoIssues(sort: string, order: string, page: number, href: string, filters: string): Observable<BasketList> {
this.filtersListService.updateListsPropertiesPage(page);
let offset = page * 10;
const requestUrl = `${href}?limit=10&offset=${offset}${filters}`;
const requestUrl = `${href}?limit=25&offset=${offset}${filters}`;
return this.http.get<BasketList>(requestUrl);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment