-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Closed
Labels
Issue: Format is validGate 1 Passed. Automatic verification of issue format passedGate 1 Passed. Automatic verification of issue format passedReported on 2.3.3Indicates original Magento version for the Issue report.Indicates original Magento version for the Issue report.
Description
Preconditions (*)
- Magento 2.3.3 installed from zip file. Updated using composer update
- Multiple store mode
- Multiple stores created
- Multiple store views for one store
Steps to reproduce (*)
- create product on website level with name "test"
- edit product attribute on store view level (attribute: name with value "test store view")
- set checkbox "Use Default Value" for attribute name on store view level and save
- after page reload name has value "test store view", checkbox is unchecked
Expected result (*)
- Attribute value in StoreView reset to value of website level -> "test"
- Checkbox "Use default value" is checked
- Database entry in table "catalog_product_entity_varchar" deleted for this store view
Actual result (*)
- Attribute value in StoreView is still the same
- Checkbox "Use default value" is not checked
- Database entry in table "catalog_product_entity_varchar" still exists for this store view
It seems to be a javascript issue regarding the toggle event ticking the checkbox.
Tracked this down to file:
vendor/magento/module-catalog/Controller/Adminhtml/Product/Initialization/Helper.php:204
The POST var $useDefaults = (array)$this->request->getPost('use_default', []); is empty.
Same function edition categories on store view level works without any problems.
Metadata
Metadata
Assignees
Labels
Issue: Format is validGate 1 Passed. Automatic verification of issue format passedGate 1 Passed. Automatic verification of issue format passedReported on 2.3.3Indicates original Magento version for the Issue report.Indicates original Magento version for the Issue report.