From 65f03e00b294bc45062bdefb628900ff608b9473 Mon Sep 17 00:00:00 2001 From: Bilal Catic Date: Sun, 30 Sep 2018 22:56:39 +0200 Subject: [PATCH] incease limit on frontend --- client-wiaas/src/containers/cart/components/CartItem.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-wiaas/src/containers/cart/components/CartItem.jsx b/client-wiaas/src/containers/cart/components/CartItem.jsx index a36633e..77b3286 100644 --- a/client-wiaas/src/containers/cart/components/CartItem.jsx +++ b/client-wiaas/src/containers/cart/components/CartItem.jsx @@ -34,7 +34,7 @@ class CartItem extends Component { } isQuantityValid(quantity) { - return quantity > 0 && quantity <= 100; + return quantity > 0 && quantity <= 65000; } updateQuantity(cartItem, quantity) {