Skip to content

Commit

Permalink
Merge pull request #566 from Madhuravas/develop
Browse files Browse the repository at this point in the history
MOSIP-24740 changed params for service history API
  • Loading branch information
aranaravi authored Nov 2, 2023
2 parents 0d53fee + 8166daf commit 5b805a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resident-ui/src/app/core/services/data-storage.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export class DataStorageService {
if (request) {
let pageSize = request.pageSize;
let pageIndex = parseInt(request.pageIndex);
buildURL = "?pageStart=" + pageIndex + "&pageFetch=" + pageSize;
buildURL = "?pageIndex=" + pageIndex + "&pageSize=" + pageSize;
if (request) {
buildURL = buildURL + "&" + filters;
}
Expand Down

0 comments on commit 5b805a0

Please sign in to comment.