Skip to content

Commit

Permalink
fix: pass onChangeTab function through layout
Browse files Browse the repository at this point in the history
  • Loading branch information
simcha90 committed Sep 12, 2021
1 parent bd06c98 commit 3956885
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ class Column extends React.PureComponent {
onResizeStop,
handleComponentDrop,
editMode,
onChangeTab,
isComponentVisible,
} = this.props;

Expand Down Expand Up @@ -191,6 +192,7 @@ class Column extends React.PureComponent {
onResize={onResize}
onResizeStop={onResizeStop}
isComponentVisible={isComponentVisible}
onChangeTab={onChangeTab}
/>
))}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ class Row extends React.PureComponent {
onResizeStop,
handleComponentDrop,
editMode,
onChangeTab,
isComponentVisible,
} = this.props;

Expand Down Expand Up @@ -176,6 +177,7 @@ class Row extends React.PureComponent {
onResize={onResize}
onResizeStop={onResizeStop}
isComponentVisible={isComponentVisible}
onChangeTab={onChangeTab}
/>
))}

Expand Down

0 comments on commit 3956885

Please sign in to comment.