We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 538a79a commit 7cc67a7Copy full SHA for 7cc67a7
packages/base/src/UI5Element.js
@@ -105,6 +105,10 @@ class UI5Element extends HTMLElement {
105
await this._processChildren();
106
}
107
108
+ if (!this.shadowRoot) { // Workaround for Firefox74 bug
109
+ await Promise.resolve();
110
+ }
111
+
112
await RenderScheduler.renderImmediately(this);
113
this._domRefReadyPromise._deferredResolve();
114
if (typeof this.onEnterDOM === "function") {
0 commit comments