We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c521af0 commit 533d4f1Copy full SHA for 533d4f1
app/code/Magento/Bundle/view/base/web/js/price-bundle.js
@@ -49,7 +49,6 @@ define([
49
// Override defaults with URL query parameters and/or inputs values
50
this._overrideDefaults();
51
52
- options.trigger('change');
53
qty.trigger('change');
54
},
55
@@ -98,12 +97,13 @@ define([
98
97
$.each(queryParams, $.proxy(function (key, value) {
99
options.each(function(index, option) {
100
if ( option.name === key ) {
101
- $(option).attr('value', value);
102
$(option).val(value).change();
+ $(option).attr('value', value);
103
}
104
});
105
qtys.each(function(index, qty) {
106
if (qty.name === key) {
+ $(qty).val(value);
107
$(qty).attr('value', value);
108
109
0 commit comments