Skip to content

Commit

Permalink
Merge pull request #2000 from bcgov/hotifx/ALCS-2410
Browse files Browse the repository at this point in the history
Fix Subdivision Proposed Lot Precision
  • Loading branch information
Abradat authored Nov 28, 2024
2 parents 3fd8f5c + ca1e01b commit 1445455
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class SubdDetailsComponent {

this.totalAcres = applicationSubmission.subdProposedLots
.reduce((total, lot) => total + (lot.size !== null ? lot.size : 0), 0)
.toFixed(2);
.toFixed(5);
}
}

Expand Down

0 comments on commit 1445455

Please sign in to comment.