From c11644ae5370dd6c4050946e9ac3c8ad06c532b9 Mon Sep 17 00:00:00 2001 From: kevinpauer Date: Thu, 12 May 2022 15:25:55 +0200 Subject: [PATCH] Fix #185 --- frontend/src/app/Views/dashboard/dashboard.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/Views/dashboard/dashboard.component.ts b/frontend/src/app/Views/dashboard/dashboard.component.ts index 449e21e..2cdaaeb 100644 --- a/frontend/src/app/Views/dashboard/dashboard.component.ts +++ b/frontend/src/app/Views/dashboard/dashboard.component.ts @@ -63,7 +63,7 @@ export class DashboardComponent implements OnInit { }); } this.dataSourceTransactions = TRANSACTION_DATA; - this.profit = this.depotCurrentValue - this.depotCost; + this.profit = this.depotCurrentValue + this.depotCost; }); }