fix(sever): tax rates cell.

This commit is contained in:
Ahmed Bouhuolia
2023-09-20 00:43:55 +02:00
parent 453df2ac4e
commit d48d864a5f
5 changed files with 6 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ export function InvoiceDetailTableFooter() {
{invoice.taxes.map((taxRate) => (
<TotalLine
key={taxRate.id}
title={`${taxRate.name} (${taxRate.tax_rate}%)`}
title={`${taxRate.name} [${taxRate.tax_rate}%]`}
value={taxRate.tax_rate_amount_formatted}
textStyle={TotalLineTextStyle.Regular}
/>