Browse Source
Bugfix/fix date format of retirement date in FIRE calculator (#5245)
* Fix date format
* Update changelog
pull/5250/head
Thomas Kaul
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
1 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/fire-calculator/fire-calculator.component.html
|
|
@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the date format of the retirement date in the _FIRE_ calculator |
|
|
|
- Fixed an issue with the permissions of the impersonation mode related to the onboarding on the overview tab of the home page |
|
|
|
- Fixed an issue with the permissions of the impersonation mode related to the manage activities button of the holdings tab on the home page |
|
|
|
|
|
|
|
|
|
@ -31,7 +31,9 @@ |
|
|
|
<mat-form-field appearance="outline" class="w-100"> |
|
|
|
<mat-label i18n>Retirement Date</mat-label> |
|
|
|
<div> |
|
|
|
{{ calculatorForm.get('retirementDate').value | date: 'MMMM YYYY' }} |
|
|
|
{{ |
|
|
|
calculatorForm.get('retirementDate')?.value | date: 'MMMM yyyy' |
|
|
|
}} |
|
|
|
</div> |
|
|
|
<input |
|
|
|
class="d-none" |
|
|
|