Browse Source
Bugfix/fix projected total amount in fire calculator (#825)
* Fix calculation of projected total amount
* Update changelog
pull/827/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
1 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/fire-calculator/fire-calculator.component.ts
|
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed an issue with the calculation of the projected total amount in the _FIRE_ calculator |
|
|
|
|
|
|
|
## 1.135.0 - 10.04.2022 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -234,7 +234,7 @@ export class FireCalculatorComponent |
|
|
|
datasetPrincipal.data.push(principal.toNumber()); |
|
|
|
datasetInterest.data.push(interest.toNumber()); |
|
|
|
|
|
|
|
if (period === t - 1) { |
|
|
|
if (period === t) { |
|
|
|
this.projectedTotalAmount = totalAmount.toNumber(); |
|
|
|
} |
|
|
|
} |
|
|
|