diff --git a/superset-frontend/src/dashboard/components/gridComponents/Column.jsx b/superset-frontend/src/dashboard/components/gridComponents/Column.jsx index d63634978b1c..90666d6d9883 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/Column.jsx +++ b/superset-frontend/src/dashboard/components/gridComponents/Column.jsx @@ -110,6 +110,7 @@ class Column extends React.PureComponent { onResizeStop, handleComponentDrop, editMode, + onChangeTab, isComponentVisible, } = this.props; @@ -191,6 +192,7 @@ class Column extends React.PureComponent { onResize={onResize} onResizeStop={onResizeStop} isComponentVisible={isComponentVisible} + onChangeTab={onChangeTab} /> ))} diff --git a/superset-frontend/src/dashboard/components/gridComponents/Row.jsx b/superset-frontend/src/dashboard/components/gridComponents/Row.jsx index a6b3598cf0cb..b0037bf12322 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/Row.jsx +++ b/superset-frontend/src/dashboard/components/gridComponents/Row.jsx @@ -109,6 +109,7 @@ class Row extends React.PureComponent { onResizeStop, handleComponentDrop, editMode, + onChangeTab, isComponentVisible, } = this.props; @@ -176,6 +177,7 @@ class Row extends React.PureComponent { onResize={onResize} onResizeStop={onResizeStop} isComponentVisible={isComponentVisible} + onChangeTab={onChangeTab} /> ))}