diff --git a/themes/default/cart/cart.blade.php b/themes/default/cart/cart.blade.php index af6e2129..e47175ed 100644 --- a/themes/default/cart/cart.blade.php +++ b/themes/default/cart/cart.blade.php @@ -53,7 +53,7 @@
- +
@@ -143,9 +143,9 @@ location = '{{ shop_route("checkout.index") }}' }, - quantityChange(quantity, cart_id) { + quantityChange(quantity, cart_id, sku_id) { const self = this; - $http.put(`/carts/${cart_id}`, {quantity: quantity}, {hload: true}).then((res) => { + $http.put(`/carts/${cart_id}`, {quantity: quantity, sku_id}, {hload: true}).then((res) => { this.setUpdateData(res); }) },