Skip to content
Snippets Groups Projects
Commit 5cb82c37 authored by matvey.tomashchuk's avatar matvey.tomashchuk
Browse files

ecommerce hot fix

parent 2851dcfd
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@
<div class="cart-col cart-col--quantity">
<div class="cart-quantity">
<button type="button" @click="changeQuantity('minus', item)" class="cart-quantity-button cart-quantity-button--minus" v-if=!item.data_promo></button>
<input class="cart-quantity-value" type="text" v-model="item.quantity" @keypress="NumbersOnly" @blur="readQuantity(item)" />
<input class="cart-quantity-value" type="text" v-model="quantity[item.vid]" @keypress="NumbersOnly" @blur="readQuantity(item)" />
<button type="button" @click="changeQuantity('plus', item)" class="cart-quantity-button cart-quantity-button--plus" v-if=!item.data_promo :class="item.quantity == item.stock ? 'cart-quantity-button--disabled' : ''"></button>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment