File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
app/code/Magento/Tax/view/frontend/templates/checkout/cart/item/price Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 11
11
<?php $ _item = $ block ->getItem () ?>
12
12
<?php if ($ block ->displayPriceInclTax () || $ block ->displayBothPrices ()): ?>
13
13
<span class="price-wrapper price-including-tax" data-label="<?= /* @escapeNotVerified */ __ ('Incl. Tax ' ) ?> ">
14
- <?php $ _incl = $ _item ->getPriceInclTax (); ?>
15
- <?= /* @escapeNotVerified */ $ this ->helper ('Magento\Checkout\Helper\Data ' )->formatPrice ($ _incl ) ?>
14
+ <span class="minicart-price">
15
+ <?php $ _incl = $ _item ->getPriceInclTax (); ?>
16
+ <?= /* @escapeNotVerified */ $ this ->helper ('Magento\Checkout\Helper\Data ' )->formatPrice ($ _incl ) ?>
17
+ </span>
16
18
</span>
17
19
<?php endif ; ?>
18
20
<?php if ($ block ->displayPriceExclTax () || $ block ->displayBothPrices ()): ?>
19
21
<span class="price-wrapper price-excluding-tax" data-label="<?= /* @escapeNotVerified */ __ ('Excl. Tax ' ) ?> ">
20
- <?= /* @escapeNotVerified */ $ this ->helper ('Magento\Checkout\Helper\Data ' )->formatPrice ($ _item ->getCalculationPrice ()) ?>
22
+ <span class="minicart-price">
23
+ <?= /* @escapeNotVerified */ $ this ->helper ('Magento\Checkout\Helper\Data ' )->formatPrice ($ _item ->getCalculationPrice ()) ?>
24
+ </span>
21
25
</span>
22
26
<?php endif ; ?>
You can’t perform that action at this time.
0 commit comments