From a2c11c1d6bc2fd5359111bea3579548cb208c262 Mon Sep 17 00:00:00 2001 From: Severin Beauvais Date: Thu, 11 Oct 2018 14:15:02 -0700 Subject: [PATCH] PRC-738: added missing paging parameters --- src/app/commenting/review-comments/review-comments.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/commenting/review-comments/review-comments.component.ts b/src/app/commenting/review-comments/review-comments.component.ts index 70366536..06137d95 100644 --- a/src/app/commenting/review-comments/review-comments.component.ts +++ b/src/app/commenting/review-comments/review-comments.component.ts @@ -176,7 +176,7 @@ export class ReviewCommentsComponent implements OnInit, OnDestroy { exportToExcel() { // get all comments - this.commentService.getAllByApplicationId(this.application._id) + this.commentService.getAllByApplicationId(this.application._id, 0, 1000000) // max 1M records .takeUntil(this.ngUnsubscribe) .subscribe( comments => {