diff --git a/src/components/invoices/InvoiceTotals.vue b/src/components/invoices/InvoiceTotals.vue index e20626a..3ecfc0c 100644 --- a/src/components/invoices/InvoiceTotals.vue +++ b/src/components/invoices/InvoiceTotals.vue @@ -2,7 +2,7 @@ Subtotal - {{ subTotal | currency }} + {{ invoice.subTotal | currency }} @@ -13,7 +13,7 @@ @change="updateProp({ vat_rate: $event })"/>) - {{ totalVat | currency }} + {{ invoice.totalVat | currency }} @@ -24,12 +24,11 @@ placeholder="Add currency" @change="updateProp({ currency: $event })"/> - {{ total | currency }} + {{ invoice.total | currency }}