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.
2 parents 6345d6f + 8a2033c commit b684944Copy full SHA for b684944
lib/web/mage/adminhtml/form.js
@@ -453,8 +453,9 @@ define([
453
if (target) {
454
inputs = target.up(this._config['levels_up']).select('input', 'select', 'td');
455
isAnInputOrSelect = ['input', 'select'].indexOf(target.tagName.toLowerCase()) != -1; //eslint-disable-line
456
+
457
if (target.type === 'fieldset') {
- var inputs = target.select('input', 'select', 'td');
458
+ inputs = target.select('input', 'select', 'td');
459
}
460
} else {
461
inputs = false;
@@ -534,6 +535,7 @@ define([
534
535
536
if (rowElement == undefined && target) { //eslint-disable-line eqeqeq
537
rowElement = target.up(this._config['levels_up']);
538
539
540
rowElement = target;
541
0 commit comments