From 58043def08c87a5878cf2bca15f2d0cb426bcc75 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 25 Jul 2025 19:09:32 +0200 Subject: [PATCH] Bugfix/fix date format of retirement date in FIRE calculator (#5245) * Fix date format * Update changelog --- CHANGELOG.md | 1 + .../ui/src/lib/fire-calculator/fire-calculator.component.html | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb443e793..d29746466 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/libs/ui/src/lib/fire-calculator/fire-calculator.component.html b/libs/ui/src/lib/fire-calculator/fire-calculator.component.html index 31c7b334d..60d5204e1 100644 --- a/libs/ui/src/lib/fire-calculator/fire-calculator.component.html +++ b/libs/ui/src/lib/fire-calculator/fire-calculator.component.html @@ -31,7 +31,9 @@ Retirement Date
- {{ calculatorForm.get('retirementDate').value | date: 'MMMM YYYY' }} + {{ + calculatorForm.get('retirementDate')?.value | date: 'MMMM yyyy' + }}