1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

fix: list supports multiple children (without container)

This commit is contained in:
Michael Shanks 2020-07-06 14:21:55 +01:00
parent 2c193fce87
commit f4701f98a5

View file

@ -30,7 +30,11 @@ export const attachChildren = initialiseOpts => (htmlElement, options) => {
}
}
const contextArray = Array.isArray(context) ? context : [context]
const childNodes = []
for (let context of contextArray) {
for (let childProps of treeNode.props._children) {
const { componentName, libName } = splitName(childProps._component)
@ -53,11 +57,6 @@ export const attachChildren = initialiseOpts => (htmlElement, options) => {
}
}
if (Array.isArray(context)) {
for (let singleCtx of context) {
prepareNodes(singleCtx)
}
} else {
prepareNodes(context)
}
}