WEB-660:fix Incorrect rounding of report values (#3083)

This commit is contained in:
Shubham Kumar 2026-02-04 02:16:13 +05:30 committed by GitHub
parent 58adc0a7d8
commit 5f375583a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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();
}