This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 4.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 44239616c1c8cceb2c82c92cd61c25f688a80dec Author: Ross Mabbett <[email protected]> AuthorDate: Fri May 10 15:13:54 2024 -0400 fix(dashboard): Change class name on last Droppable in a column (#28395) (cherry picked from commit b0157649af813bbd678e3bf44a15f429865557fa) --- superset-frontend/src/dashboard/components/gridComponents/Column.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/dashboard/components/gridComponents/Column.jsx b/superset-frontend/src/dashboard/components/gridComponents/Column.jsx index 6d96bfb00c..216e9e8e82 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/Column.jsx +++ b/superset-frontend/src/dashboard/components/gridComponents/Column.jsx @@ -295,7 +295,7 @@ class Column extends React.PureComponent { className={cx( 'empty-droptarget', itemIndex === columnItems.length - 1 && - 'droptarget-edge', + 'droptarget-edge-last', )} editMode >
