mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
[FIX] blockdom: do not propagate svg namespace to siblings
This commit is contained in:
committed by
Aaron Bohy
parent
463eb4bb86
commit
5dddf8f9a3
@@ -127,7 +127,7 @@ function buildTree(
|
||||
switch (node.nodeType) {
|
||||
case Node.ELEMENT_NODE: {
|
||||
// HTMLElement
|
||||
let currentNS = parent && parent.currentNS;
|
||||
let currentNS = domParentTree && domParentTree.currentNS;
|
||||
const tagName = (node as Element).tagName;
|
||||
let el: Node | undefined = undefined;
|
||||
const info: DynamicInfo[] = [];
|
||||
|
||||
Reference in New Issue
Block a user