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 14eeea2 commit 15477afCopy full SHA for 15477af
app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Validate.php
@@ -110,6 +110,11 @@ public function execute()
110
$options
111
);
112
$valueOptions = (isset($options['value']) && is_array($options['value'])) ? $options['value'] : [];
113
+ foreach ($valueOptions as $key => $val) {
114
+ if (isset($options['delete'][$key]) && $options['delete'][$key]) {
115
+ unset($valueOptions[$key]);
116
+ }
117
118
$this->checkEmptyOption($response, $valueOptions);
119
}
120
0 commit comments