Skip to content

Commit 8a5ed9d

Browse files
authored
ENGCOM-5376: Fix issue 21126 : Import design break issue resolved #21128
2 parents 7e13330 + 084835e commit 8a5ed9d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/web/mage/validation.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1888,6 +1888,10 @@
18881888
if (element.siblings('.tooltip').length) {
18891889
errorPlacement = element.siblings('.tooltip');
18901890
}
1891+
//logic for select with tooltip in after element
1892+
if (element.next().find('.tooltip').length) {
1893+
errorPlacement = element.next();
1894+
}
18911895
errorPlacement.after(error);
18921896
}
18931897
},

0 commit comments

Comments
 (0)