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 81d04af commit 0379efbCopy full SHA for 0379efb
app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Eav.php
@@ -909,6 +909,9 @@ private function canDisplayUseDefault(ProductAttributeInterface $attribute)
909
$attributeCode = $attribute->getAttributeCode();
910
/** @var Product $product */
911
$product = $this->locator->getProduct();
912
+ if ($product->isLockedAttribute($attributeCode)) {
913
+ return false;
914
+ }
915
916
if (isset($this->canDisplayUseDefault[$attributeCode])) {
917
return $this->canDisplayUseDefault[$attributeCode];
0 commit comments