Skip to content

Commit 9144a57

Browse files
author
Sergey Shvets
committed
MAGETWO-92036: The error icon does not appear on sections with required attributes that are empty when click on 'save' button
1 parent d89cbf3 commit 9144a57

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Ui/view/base/web/js/form/components

1 file changed

+1
-1
lines changed

app/code/Magento/Ui/view/base/web/js/form/components/fieldset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ define([
179179
hasErrors = container.elems.some('error');
180180

181181
if (hasErrors === false && container.hasOwnProperty('_elems')) {
182-
container._elems.each(function (child) {
182+
container._elems.forEach(function (child) {
183183

184184
if (hasErrors === false) {
185185
hasErrors = self._isChildrenHasErrors(hasErrors, child);

0 commit comments

Comments
 (0)