Skip to content

Commit 9da61a6

Browse files
committed
ACP2E-45: Tiered pricing tax always shows including tax
- Removed the unwanted space in code.
1 parent 3701fff commit 9da61a6

File tree

1 file changed

+4
-4
lines changed
  • app/code/Magento/ConfigurableProduct/view/base/templates/product/price

1 file changed

+4
-4
lines changed

app/code/Magento/ConfigurableProduct/view/base/templates/product/price/tier_price.phtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
%>
2525

2626
<% var priceStr = '<span class="price-container price-tier_price">'
27-
+ '<span data-price-amount="' + priceUtils.formatPrice(item.price, currencyFormat) + '"'
28-
+ ' data-price-type=""' + ' class="price-wrapper price-including-tax">'
29-
+ '<span class="price">' + price + '</span>'
30-
+ '</span>' + itemInclExclPrice + '</span>';
27+
+ '<span data-price-amount="' + price + '"'
28+
+ ' data-price-type=""' + ' class="price-wrapper price-including-tax">'
29+
+ '<span class="price">' + price + '</span>'
30+
+ '</span>' + itemInclExclPrice + '</span>';
3131
%>
3232
<li class="item">
3333
<%= '<?= $block->escapeHtml(__('Buy %1 for %2 each and', '%1', '%2')) ?>'

0 commit comments

Comments
 (0)