incease limit on frontend

This commit is contained in:
Bilal Catic
2018-09-30 22:56:39 +02:00
parent 522ecce279
commit 65f03e00b2

View File

@@ -34,7 +34,7 @@ class CartItem extends Component {
}
isQuantityValid(quantity) {
return quantity > 0 && quantity <= 100;
return quantity > 0 && quantity <= 65000;
}
updateQuantity(cartItem, quantity) {