Skip to content

Commit

Permalink
POC-610: Fixed DQA filter to be a ALL by default (AMPATH#1696)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrykorir committed Jan 17, 2024
1 parent 629d78e commit 95f7240
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class ChartAbstractionPatientlistComponent implements OnInit {
startDate: this.params.startDate,
endDate: this.params.endDate,
patientType: this.params.patientType,
limit: this.params.limit ? this.params.limit : 10,
limit: this.params.limit ? this.params.limit : 'all',
offset: 0
};
this.getPatientList(requestParams);
Expand Down

0 comments on commit 95f7240

Please sign in to comment.