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
parent
commit
58043def08
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 4
      libs/ui/src/lib/fire-calculator/fire-calculator.component.html

1
CHANGELOG.md

@ -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

4
libs/ui/src/lib/fire-calculator/fire-calculator.component.html

@ -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"

Loading…
Cancel
Save