Browse Source

Bugfix/reactivate auto calculate for retirement date and projected total amount in FIRE page (#6831)

* fix(lib): update fields to accept null

* fix(client): set to null
pull/6832/head
Kenrick Tandrian 1 week ago
committed by GitHub
parent
commit
2af973bedb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      apps/client/src/app/pages/portfolio/fire/fire-page.component.ts
  2. 12
      libs/common/src/lib/dtos/update-user-setting.dto.ts

4
apps/client/src/app/pages/portfolio/fire/fire-page.component.ts

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

12
libs/common/src/lib/dtos/update-user-setting.dto.ts

@ -96,13 +96,21 @@ export class UpdateUserSettingDto {
@IsOptional()
locale?: string;
/**
* The target financial amount the user aims to reach before retiring.
* Can be explicitly set to null to clear the value and calculate it dynamically.
*/
@IsNumber()
@IsOptional()
projectedTotalAmount?: number;
projectedTotalAmount?: number | null;
/**
* The target date when the user plans to retire.
* Can be explicitly set to null to clear the value and calculate it dynamically.
*/
@IsISO8601()
@IsOptional()
retirementDate?: string;
retirementDate?: string | null;
@IsNumber()
@IsOptional()

Loading…
Cancel
Save