Skip to content

Commit 1445455

Browse files
authored
Merge pull request #2000 from bcgov/hotifx/ALCS-2410
Fix Subdivision Proposed Lot Precision
2 parents 3fd8f5c + ca1e01b commit 1445455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

portal-frontend/src/app/features/applications/application-details/subd-details/subd-details.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class SubdDetailsComponent {
2828

2929
this.totalAcres = applicationSubmission.subdProposedLots
3030
.reduce((total, lot) => total + (lot.size !== null ? lot.size : 0), 0)
31-
.toFixed(2);
31+
.toFixed(5);
3232
}
3333
}
3434

0 commit comments

Comments
 (0)