Skip to content

Commit ca1e01b

Browse files
committed
fix subdivision proposed lot precision
1 parent 3fd8f5c commit ca1e01b

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)