We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 56b585a + c0670a7 commit 1ae4aa6Copy full SHA for 1ae4aa6
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