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 dc50932 commit 610d56fCopy full SHA for 610d56f
libs/core/src/lib/renderer/index.ts
@@ -89,6 +89,11 @@ export class NgtRenderer implements Renderer2 {
89
createElement(name: string, namespace?: string | null | undefined) {
90
const element = this.delegate.createElement(name, namespace);
91
92
+ // if there's namespace, we don't do anything
93
+ if (namespace) {
94
+ return createNode('dom', element, this.document);
95
+ }
96
+
97
// on first pass, we return the Root Scene as the root node
98
if (this.isRoot) {
99
this.isRoot = false;
0 commit comments