Bugfix/fix projected total amount in fire calculator (#825)
* Fix calculation of projected total amount * Update changelog
This commit is contained in:
parent
6cfd052781
commit
70723f8d5f
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user