From aef8347df33f41db0b49fd3a94b664af28fe0056 Mon Sep 17 00:00:00 2001 From: Nedim Uka Date: Mon, 5 Nov 2018 13:37:47 +0100 Subject: [PATCH] Display * instead of cart count --- frontend/src/containers/cart/components/CartIcon.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/containers/cart/components/CartIcon.jsx b/frontend/src/containers/cart/components/CartIcon.jsx index 85b8266..c98b4a6 100644 --- a/frontend/src/containers/cart/components/CartIcon.jsx +++ b/frontend/src/containers/cart/components/CartIcon.jsx @@ -7,7 +7,7 @@ class CartIcon extends Component { return ( - {cartCount} + {cartCount >= 1 && ' * ' } ); }