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 39ed838 commit 3c21c6eCopy full SHA for 3c21c6e
packages/xtensio/src/loaders/importReactLoader.ts
@@ -37,6 +37,7 @@ const getLinkTag = () => {
37
const __mObserver = new MutationObserver((mutationsList, observer)=> {
38
for (const mutation of mutationsList) {
39
if (mutation.type === 'childList') {
40
+ if(mutation.target?.parentElement?.tagName === "HTML" && !document.querySelector("${appName}")) __mount();
41
mutation.addedNodes.forEach((node) => {
42
if (/(${appName}-mount)/i.test(node.nodeName)) {
43
const shadowEl = node.querySelector("[shadow-root='${appName}-mount']");
0 commit comments