fix(core): update

This commit is contained in:
2020-08-06 15:17:01 +00:00
parent d6ba1bbed7
commit 9991e234ce
8 changed files with 52 additions and 39 deletions

View File

@@ -34,7 +34,7 @@ export function serializeFunction(rootNode) {
// console.log(nodeArg.nodeName);
if (nodeArg.shadowRoot) {
nodeArg.setAttribute('smartssr', 'yes');
// lets handle the current node
const nodeUUID = uuidv4();
@@ -64,7 +64,7 @@ export function serializeFunction(rootNode) {
noteForAppending.push(childNode);
}
});
noteForAppending.forEach(childNode => {
noteForAppending.forEach((childNode) => {
nodeArg.append(childNode);
});
} else {