Skip to content

Commit 5c505e9

Browse files
committed
adjusting children for rerendering
1 parent 8ae3b22 commit 5c505e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dash/dash-renderer/src/reducers/reducer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ function handleChildrenPropsUpdate({
4141
);
4242

4343
// Ensure "children" is always considered
44-
if (!childrenProps.includes('children[]')) {
45-
childrenProps.push('children[]');
44+
if (!childrenProps.includes('children')) {
45+
childrenProps.push('children');
4646
}
4747

4848
childrenProps.forEach(childrenProp => {

0 commit comments

Comments
 (0)