Skip to content

Commit 6b8892c

Browse files
committed
#6658 manager.Component: addVnodeComponentReferences() => removing the wrapper check
1 parent 39bbdb7 commit 6b8892c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/manager/Component.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,14 @@ class Component extends Manager {
4949

5050
let me = this,
5151
childNodes = vnode?.childNodes ? [...vnode.childNodes] : [],
52-
isWrapper = childNodes.length > 0 && !!me.wrapperNodes.get(vnode.id),
5352
childNodeId, component, componentId, parentRef, referenceNode;
5453

5554
vnode.childNodes = childNodes;
5655

5756
childNodes.forEach((childNode, index) => {
5857
childNodeId = childNode.id;
5958

60-
if (!childNode.componentId && childNodeId !== ownerId && !isWrapper) {
59+
if (!childNode.componentId && childNodeId !== ownerId) {
6160
component = me.get(childNodeId);
6261

6362
if (!component) {

0 commit comments

Comments
 (0)