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 bce891d commit 8580f45Copy full SHA for 8580f45
app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/variations.js
@@ -357,12 +357,12 @@ define([
357
var element;
358
359
_.each(this.disabledAttributes, function (attribute) {
360
- registry.get('index = ' + attribute).disabled(false);
+ registry.get('code = ' + attribute, 'index = ' + attribute).disabled(false);
361
});
362
this.disabledAttributes = [];
363
364
_.each(attributes, function (attribute) {
365
- element = registry.get('index = ' + attribute.code);
+ element = registry.get('code = ' + attribute.code, 'index = ' + attribute.code);
366
367
if (!_.isUndefined(element)) {
368
element.disabled(true);
0 commit comments