Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts
|
|
@ -50,7 +50,7 @@ export class PortfolioSummaryComponent implements OnChanges, OnInit { |
|
|
|
public onEditEmergencyFund() { |
|
|
|
const emergencyFundInput = prompt( |
|
|
|
$localize`Please enter the amount of your emergency fund:`, |
|
|
|
this.summary.emergencyFund.toString() |
|
|
|
this.summary.emergencyFund?.toString() ?? '0' |
|
|
|
); |
|
|
|
const emergencyFund = parseFloat(emergencyFundInput?.trim()); |
|
|
|
|
|
|
|