From 5f375583a5c02d9fa5312010ba7cd3f2e823ed2a Mon Sep 17 00:00:00 2001 From: Shubham Kumar Date: Wed, 4 Feb 2026 02:16:13 +0530 Subject: [PATCH] WEB-660:fix Incorrect rounding of report values (#3083) --- 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(); }