Skip to content

Commit

Permalink
fix(admin-ui): Correctly display decimal tax rate in order summary
Browse files Browse the repository at this point in the history
Fixes #2339
  • Loading branch information
michaelbromley committed Aug 10, 2023
1 parent 59a1d5d commit 1f507fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
<tbody>
<tr *ngFor="let row of order.taxSummary">
<td>{{ row.description }}</td>
<td>{{ row.taxRate / 100 | percent }}</td>
<td>{{ row.taxRate / 100 | percent:'0.0-2' }}</td>
<td>{{ row.taxBase | localeCurrency : order.currencyCode }}</td>
<td>{{ row.taxTotal | localeCurrency : order.currencyCode }}</td>
</tr>
Expand Down

0 comments on commit 1f507fa

Please sign in to comment.