Display * instead of cart count #56

Merged
nedimu merged 2 commits from cart-number into master 2018-11-05 14:05:55 +01:00
Showing only changes of commit aef8347df3 - Show all commits

View File

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