Browse Source

Fix date format

pull/5245/head
Thomas Kaul 4 weeks ago
parent
commit
f79ddd5055
  1. 4
      libs/ui/src/lib/fire-calculator/fire-calculator.component.html

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