Fix budget details title
Signed-off-by: William Brawner <me@wbrawner.com>
This commit is contained in:
parent
49b4c814b9
commit
f880c108dc
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ export class BudgetDetailsComponent implements OnInit {
|
|||
const id = Number.parseInt(this.route.snapshot.paramMap.get('id'));
|
||||
this.twigsService.getBudget(id)
|
||||
.subscribe(budget => {
|
||||
this.app.title = Budget.name;
|
||||
this.app.title = budget.name;
|
||||
this.budget = budget;
|
||||
this.getBalance();
|
||||
this.getTransactions();
|
||||
|
|
Loading…
Reference in a new issue