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 51930d9 + 419d894 commit 672fe92Copy full SHA for 672fe92
lib/web/mage/adminhtml/form.js
@@ -453,6 +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
+ if (target.type === 'fieldset') {
457
+ var inputs = target.select('input', 'select', 'td');
458
+ }
459
} else {
460
inputs = false;
461
isAnInputOrSelect = false;
@@ -531,6 +534,9 @@ define([
531
534
532
535
if (rowElement == undefined && target) { //eslint-disable-line eqeqeq
533
536
rowElement = target.up(this._config['levels_up']);
537
538
+ rowElement = target;
539
540
}
541
542
if (rowElement) {
0 commit comments