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 ed8b676 commit 4249d9aCopy full SHA for 4249d9a
app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle.php
@@ -178,6 +178,10 @@ public function getJsonConfig()
178
$configValue = $preConfiguredValues->getData('bundle_option/' . $optionId);
179
if ($configValue) {
180
$defaultValues[$optionId] = $configValue;
181
+ $configQty = $preConfiguredValues->getData('bundle_option_qty/' . $optionId);
182
+ if ($configQty) {
183
+ $options[$optionId]['selections'][$configValue]['qty'] = $configQty;
184
+ }
185
}
186
187
$position++;
0 commit comments