From 6ea1c77ef2f5ba0277a8ab93f7326ef94287fd6f Mon Sep 17 00:00:00 2001 From: Billy Brawner Date: Fri, 31 Aug 2018 21:16:08 -0500 Subject: [PATCH] Add default balance to dashboard --- src/app/dashboard/dashboard.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/dashboard/dashboard.component.ts b/src/app/dashboard/dashboard.component.ts index dba7a78..126aa6e 100644 --- a/src/app/dashboard/dashboard.component.ts +++ b/src/app/dashboard/dashboard.component.ts @@ -22,6 +22,7 @@ export class DashboardComponent implements OnInit { ) { } ngOnInit() { + this.balance = 0; this.getBalance(); this.getTransactions(); this.getCategories();