diff --git a/src/web/assets/checkout/dist/js/app.js b/src/web/assets/checkout/dist/js/app.js index dba12ff..a756690 100644 --- a/src/web/assets/checkout/dist/js/app.js +++ b/src/web/assets/checkout/dist/js/app.js @@ -97,9 +97,11 @@ const LineItem = (props) => { sending: false, input() { this.qty = this.qty.replace(/\D/g, ''); - if(this.qty) { - this.updateQty(); - } + setTimeout(() => { + if(this.qty) { + this.updateQty(); + } + }, 700); }, increment() { this.removeMessages();