🐛 (Account Card) fix total cost with code main currency

This commit is contained in:
Julien Calixte
2019-09-29 11:15:08 +02:00
parent c113420756
commit 5307d2383c

View File

@@ -64,7 +64,7 @@ export default class AccountCard extends Vue {
private get totalCost(): number {
return transactionService.getTotalCost(
this.transactions,
this.account.mainCurrency.name
this.account.mainCurrency.code
)
}
}