Skip to content

Commit 80c4f32

Browse files
authored
fix: icon from datepicker no longer flickers on IE (#723)
1 parent 964af67 commit 80c4f32

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/main/src/Icon.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,9 @@ class Icon extends UI5Element {
165165
if (!window.ShadyDOM) {
166166
return;
167167
}
168-
this.setAttribute("data-ui5-defined", "");
168+
setTimeout(_ => {
169+
this.setAttribute("data-ui5-defined", "");
170+
}, 0);
169171
}
170172
}
171173

0 commit comments

Comments
 (0)