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 bdfb03e commit 0a480d7Copy full SHA for 0a480d7
app/code/Magento/Wishlist/Helper/Data.php
@@ -679,8 +679,7 @@ public function getProductUrl($item, $additional = [])
679
*/
680
private function getFragmentByProductType(DataObject $buyRequest): array
681
{
682
- $fragment = $buyRequest->getSuperAttribute() ?? [];
683
- $fragment = $buyRequest->getSuperGroup() ?? [];
+ $fragment = $buyRequest->getSuperAttribute() ?? $buyRequest->getSuperGroup() ?? [];
684
if ($buyRequest->getBundleOption()) {
685
$fragment['bundle_option'] = $buyRequest->getBundleOption() ?? [];
686
$fragment['bundle_option_qty'] = $buyRequest->getBundleOptionQty() ?? [];
0 commit comments