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 1124cc8 commit 8f7328bCopy full SHA for 8f7328b
app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php
@@ -67,7 +67,7 @@ public function __construct(
67
public function getProducts(ProductInterface $product)
68
{
69
$productId = $product->getId();
70
- $storeId = $product->getStoreId();
+ $storeId = $product->getStoreId() ?: $this->storeManager->getStore()->getId();
71
$key = $storeId . '-' . $productId;
72
if (!isset($this->linkedProductMap[$key])) {
73
$productIds = $this->resource->getConnection()->fetchCol(
0 commit comments