Issue #1779 fixed
This commit is contained in:
parent
c435b6c121
commit
05a619d39b
|
|
@ -15,7 +15,10 @@
|
|||
"jquery": "^3.4.1",
|
||||
"laravel-mix": "^5.0.0",
|
||||
"laravel-mix-merge-manifest": "^0.1.2",
|
||||
"vue": "^2.6.10"
|
||||
"sass": "^1.24.4",
|
||||
"sass-loader": "^8.0.2",
|
||||
"vue": "^2.6.10",
|
||||
"vue-template-compiler": "^2.6.11"
|
||||
},
|
||||
"dependencies": {
|
||||
"vee-validate": "^2.2.15"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,9 @@ import './bootstrap';
|
|||
window.Vue = Vue;
|
||||
window.VeeValidate = VeeValidate;
|
||||
|
||||
Vue.use(VeeValidate);
|
||||
Vue.use(VeeValidate, {
|
||||
events: 'input|change|blur',
|
||||
});
|
||||
Vue.prototype.$http = axios
|
||||
|
||||
window.eventBus = new Vue();
|
||||
|
|
|
|||
|
|
@ -483,7 +483,7 @@ class Bundle extends AbstractType
|
|||
if ($this->product->id != $options2['product_id'])
|
||||
return false;
|
||||
|
||||
return $options1['bundle_options'] == $options2['bundle_options'];
|
||||
return $options1['bundle_options'] == $options2['bundle_options'] && $options1['bundle_option_qty'] == $options2['bundle_option_qty'];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -18,7 +18,8 @@ require("ez-plus/src/jquery.ez-plus.js");
|
|||
Vue.use(VeeValidate, {
|
||||
dictionary: {
|
||||
ar: { messages: localeMessages.ar }
|
||||
}
|
||||
},
|
||||
events: 'input|change|blur',
|
||||
});
|
||||
|
||||
Vue.prototype.$http = axios
|
||||
|
|
|
|||
Loading…
Reference in New Issue