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

Extend investment chart by three months ()

pull/279/head
Thomas 4 years ago committed by GitHub
parent 37358fb480
commit 178166d86b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -73,7 +73,7 @@ export class InvestmentChartComponent implements OnChanges, OnDestroy, OnInit {
const lastItem = this.investments[this.investments.length - 1];
this.investments.push({
...lastItem,
date: addMonths(parseISO(lastItem.date), 3).toISOString()
date: addMonths(new Date(), 3).toISOString()
});
}

Loading…
Cancel
Save