🐛 (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 { private get totalCost(): number {
return transactionService.getTotalCost( return transactionService.getTotalCost(
this.transactions, this.transactions,
this.account.mainCurrency.name this.account.mainCurrency.code
) )
} }
} }