Skip to content

Commit eb6cb9e

Browse files
committed
Fix bug in passing the page's parameters into component instances
1 parent f8ca511 commit eb6cb9e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/framework/components/PageComposition/PageComposition.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,12 @@ class PageComposition extends Component {
210210
componentKey,
211211
containerHandlers,
212212
containerProperties,
213-
{ key: key || `${containerKey}_${uniqueId('c')}`, ...props, ...populatedProps, ...propsComponents },
213+
{
214+
key: key || `${containerKey}_${uniqueId('c')}`,
215+
...props,
216+
...propsComponents,
217+
...populatedProps
218+
},
214219
nestedComponents
215220
);
216221
}

0 commit comments

Comments
 (0)