Display * instead of cart count

This commit is contained in:
Nedim Uka
2018-11-05 13:37:47 +01:00
parent 75141b6bd1
commit aef8347df3

View File

@@ -7,7 +7,7 @@ class CartIcon extends Component {
return (
<span id="cart-count" className="items-cart-count">
{cartCount}
{cartCount >= 1 && ' * ' }
</span>
);
}