|
|
@ -174,7 +174,7 @@ export class GfFirePageComponent implements OnInit { |
|
|
this.dataService |
|
|
this.dataService |
|
|
.putUserSetting({ |
|
|
.putUserSetting({ |
|
|
projectedTotalAmount, |
|
|
projectedTotalAmount, |
|
|
retirementDate: undefined |
|
|
retirementDate: null |
|
|
}) |
|
|
}) |
|
|
.pipe(takeUntilDestroyed(this.destroyRef)) |
|
|
.pipe(takeUntilDestroyed(this.destroyRef)) |
|
|
.subscribe(() => { |
|
|
.subscribe(() => { |
|
|
@ -192,7 +192,7 @@ export class GfFirePageComponent implements OnInit { |
|
|
protected onRetirementDateChange(retirementDate: Date) { |
|
|
protected onRetirementDateChange(retirementDate: Date) { |
|
|
this.dataService |
|
|
this.dataService |
|
|
.putUserSetting({ |
|
|
.putUserSetting({ |
|
|
projectedTotalAmount: undefined, |
|
|
projectedTotalAmount: null, |
|
|
retirementDate: retirementDate.toISOString() |
|
|
retirementDate: retirementDate.toISOString() |
|
|
}) |
|
|
}) |
|
|
.pipe(takeUntilDestroyed(this.destroyRef)) |
|
|
.pipe(takeUntilDestroyed(this.destroyRef)) |
|
|
|