Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/0f4bf529d87d5e4f5ad26c85594113f7d8b59e30 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Handle impersonation mode with guard ()

pull/1722/head
Thomas Kaul 2 years ago committed by GitHub
parent dad6bf7095
commit 0f4bf529d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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());

Loading…
Cancel
Save