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-form-field appearance="outline" class="w-100">
<mat-label i18n>Retirement Date</mat-label> <mat-label i18n>Retirement Date</mat-label>
<div> <div>
{{ calculatorForm.get('retirementDate').value | date: 'MMMM YYYY' }} {{
calculatorForm.get('retirementDate')?.value | date: 'MMMM yyyy'
}}
</div> </div>
<input <input
class="d-none" class="d-none"

Loading…
Cancel
Save