diff --git a/src/components/invoices/CustomizationsModal.vue b/src/components/invoices/CustomizationsModal.vue index bcf788a..bd3ec3b 100644 --- a/src/components/invoices/CustomizationsModal.vue +++ b/src/components/invoices/CustomizationsModal.vue @@ -52,7 +52,7 @@ export default { watch: { team() { this.updateStyleEl(this.team.custom_css); - } + }, }, created() { this.initStyleEl(); 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'];