diff --git a/src/store/invoice-rows.js b/src/store/invoice-rows.js index b0f404c..95353d2 100644 --- a/src/store/invoice-rows.js +++ b/src/store/invoice-rows.js @@ -42,7 +42,7 @@ export default { }); const client = rootGetters['invoices/invoice'].client; - if (client && client.has_tax) { + if ((client && client.has_tax) || !client) { const taxes = getters.taxes.length > 0 ? getters.taxes : rootGetters['taxes/allWithLabels'];