Skip to content

Commit

Permalink
fix(admin-ui): Display up to 3 decimal places in OrderSummary tax rate
Browse files Browse the repository at this point in the history
Relates to #3051
  • Loading branch information
michaelbromley committed Sep 11, 2024
1 parent 7d070f2 commit 13a1b21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
<tbody>
<tr *ngFor="let row of order.taxSummary">
<td>{{ row.description }}</td>
<td>{{ row.taxRate / 100 | percent : '0.0-2' }}</td>
<td>{{ row.taxRate / 100 | percent : '0.0-3' }}</td>
<td>{{ row.taxBase | localeCurrency : order.currencyCode }}</td>
<td>{{ row.taxTotal | localeCurrency : order.currencyCode }}</td>
</tr>
Expand Down

0 comments on commit 13a1b21

Please sign in to comment.