Skip to content

Commit

Permalink
Fix child panel rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBurgess committed Jan 3, 2025
1 parent 0093386 commit 28b4e4c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ const Container = ({ definition }) => {
return (
<Grid name={definition.name} width={definition.width}>
{showTitle && <ContainerTitle title={definition.title} />}
<Children children={definition?.children || []} parentType="container" />
<Children
childPanels={definition?.children || []}
parentType="container"
/>
</Grid>
);
};
Expand Down

0 comments on commit 28b4e4c

Please sign in to comment.