Skip to content

Commit f7973f8

Browse files
ENGCOM-1295: [Forwardport] 6879 - Unable to change country of manufacture default label value #14714
2 parents 431d0d3 + 2593631 commit f7973f8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/web/mage/validation.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,9 @@
195195
var empty = $(element).closest('table')
196196
.find('input.required-option:visible')
197197
.filter(function (i, el) {
198-
return $.mage.isEmpty(el.value);
198+
if ($(el).is('disabled')) {
199+
return $.mage.isEmpty(el.value);
200+
}
199201
})
200202
.length;
201203

0 commit comments

Comments
 (0)