Skip to content

Commit 084835e

Browse files
ENGCOM-5376: Fix issue 21126 : Import design break issue resolved #21128
- Merge Pull Request #21128 from speedy008/magento2:fix-issue-21126 - Merged commits: 1. eebd15f 2. c8dba0b 3. d0d5615
2 parents 7514a0e + d0d5615 commit 084835e

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)