Skip to content

Commit 9597de7

Browse files
committed
AC-7099:: 'As low as' label is still displayed for a Configurable Product price even if all options have the same price
1 parent 9153a84 commit 9597de7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPrice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public function checkProductsHaveEqualPrices():bool
109109
}
110110
}
111111
}
112-
return $minPrice === $maxPrice;
112+
return !(count($this->getUsedProducts()) === 1) && $minPrice === $maxPrice;
113113
}
114114

115115
/**

0 commit comments

Comments
 (0)