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.
2 parents ecb9f8e + f32e362 commit 68dc4f0Copy full SHA for 68dc4f0
app/code/Magento/Catalog/view/base/web/js/price-options.js
@@ -76,7 +76,6 @@ define([
76
$(this.options.priceHolderSelector).trigger('updatePrice', changes);
77
},
78
79
-
80
/**
81
* Helper to fix issue with option nodes:
82
* - you can't place any html in option ->
@@ -174,7 +173,10 @@ define([
174
173
break;
175
176
case 'radio':
177
+ if (element.is(':checked')) {
+ changes[optionHash] = optionConfig[optionValue] && optionConfig[optionValue].prices || {};
178
+ }
179
+ break;
180
case 'select-one':
181
changes[optionHash] = optionConfig[optionValue] && optionConfig[optionValue].prices || {};
182
0 commit comments