From c82c612b5078bb8d09c3fa036c921c240b1be0eb Mon Sep 17 00:00:00 2001 From: shubhamsharma9199 Date: Tue, 3 Feb 2026 23:43:12 +0530 Subject: [PATCH] WEB-660:fix Incorrect rounding of report values --- src/app/reports/run-report/run-report.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/reports/run-report/run-report.component.ts b/src/app/reports/run-report/run-report.component.ts index 54388782e..c784b672b 100644 --- a/src/app/reports/run-report/run-report.component.ts +++ b/src/app/reports/run-report/run-report.component.ts @@ -189,7 +189,7 @@ export class RunReportComponent implements OnInit { if (this.exportToS3Allowed) { this.reportForm.addControl('exportOutputToS3', new UntypedFormControl(false)); } - this.decimalChoice.patchValue('0'); + this.decimalChoice.patchValue('2'); this.setChildControls(); this.addDateRangeValidator(); }