diff --git a/content/master.blade.php b/content/master.blade.php index 2a3c137..055ce87 100644 --- a/content/master.blade.php +++ b/content/master.blade.php @@ -279,7 +279,7 @@ localStorage.setItem("products", JSON.stringify(objProducts)); let quantitys = objProducts.map(obj => obj.quantity); let quantityOfProducts = 0; - for(let i = 0; i < quantitys.length; i++) { quantityOfProducts += Number(quantitys[i]); } + for(let i = 0; i < quantitys.length; i++) { if(Number.isInteger(Number(quantitys[i]))) quantityOfProducts += Number(quantitys[i]); } $('#count-products-in-bag').text(quantityOfProducts); $('#list-products-in-bag').html(''); if(typeof updateProducts === "function") $('#list-products').html('');