From 95f7240d53b5d289a14c36f9c91532691cd4a563 Mon Sep 17 00:00:00 2001 From: Henry Korir <5462699+henrykorir@users.noreply.github.com> Date: Fri, 12 Jan 2024 17:03:32 +0300 Subject: [PATCH] POC-610: Fixed DQA filter to be a ALL by default (#1696) --- .../chart-abstraction-patientlist.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/hiv-care-lib/dqa-reports/chart-abstraction-patientlist/chart-abstraction-patientlist.component.ts b/src/app/hiv-care-lib/dqa-reports/chart-abstraction-patientlist/chart-abstraction-patientlist.component.ts index 468271f78..4746b83bc 100644 --- a/src/app/hiv-care-lib/dqa-reports/chart-abstraction-patientlist/chart-abstraction-patientlist.component.ts +++ b/src/app/hiv-care-lib/dqa-reports/chart-abstraction-patientlist/chart-abstraction-patientlist.component.ts @@ -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);