Skip to content

Commit 26ceed6

Browse files
authoredJan 25, 2025··
fix(runtime): fix NotFoundError in addStyle function with referenceNode parent check (#6107)
Co-authored-by: huseyin.beyan <huseyin.beyan@accenture.com>
1 parent 1e8a2d2 commit 26ceed6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/runtime/styles.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ export const addStyle = (styleContainerNode: any, cmpMeta: d.ComponentRuntimeMet
105105
preconnectLinks.length > 0
106106
? preconnectLinks[preconnectLinks.length - 1].nextSibling
107107
: styleContainerNode.querySelector('style');
108-
(styleContainerNode as HTMLElement).insertBefore(styleElm, referenceNode);
108+
(styleContainerNode as HTMLElement).insertBefore(
109+
styleElm,
110+
referenceNode?.parentNode === styleContainerNode ? referenceNode : null,
111+
);
109112
} else if ('host' in styleContainerNode) {
110113
if (supportsConstructableStylesheets) {
111114
/**

0 commit comments

Comments
 (0)
Please sign in to comment.