We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9644572 commit 8a72af8Copy full SHA for 8a72af8
app/code/Magento/Checkout/view/frontend/web/template/minicart/content.html
@@ -30,8 +30,12 @@
30
<span class="count" if="maxItemsToDisplay < getCartLineItemsCount()" text="maxItemsToDisplay"/>
31
<translate args="'of'" if="maxItemsToDisplay < getCartLineItemsCount()"/>
32
<span class="count" text="getCartLineItemsCount()"/>
33
- <translate args="'Item in Cart'" if="getCartLineItemsCount() === 1"/>
34
- <translate args="'Items in Cart'" if="getCartLineItemsCount() > 1"/>
+ <!-- ko if: (getCartLineItemsCount() === 1) -->
+ <span translate="'Item in Cart'"/>
35
+ <!--/ko-->
36
+ <!-- ko if: (getCartLineItemsCount() > 1) -->
37
+ <span translate="'Items in Cart'"/>
38
39
</div>
40
41
<each args="getRegion('subtotalContainer')" render=""/>
0 commit comments