Skip to content

Commit

Permalink
Merge pull request #274 from severinbeauvais/PRC-738
Browse files Browse the repository at this point in the history
PRC-738: added missing paging parameters
  • Loading branch information
marklise authored Oct 11, 2018
2 parents 7ef47ec + a2c11c1 commit 805b8cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down

0 comments on commit 805b8cb

Please sign in to comment.