Incrase max item quantity #9

Merged
bilal.catic merged 4 commits from incrase-max-item-quantity into development 2018-10-01 11:50:54 +02:00
Showing only changes of commit 65f03e00b2 - Show all commits

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) {