fix(ivy): properly project individual nodes (#28152)

PR Close #28152
This commit is contained in:
Pawel Kozlowski
2019-01-15 14:46:10 +01:00
committed by Alex Rickabaugh
parent f59f18c13e
commit 808898d015
2 changed files with 4 additions and 4 deletions

View File

@ -2398,8 +2398,8 @@ export function projectionDef(selectors?: CssSelectorList[], textSelectors?: str
tails[bucketIndex] !.next = componentChild;
} else {
pData[bucketIndex] = componentChild;
componentChild.next = null;
}
componentChild.next = null;
tails[bucketIndex] = componentChild;
componentChild = nextNode;