This is an automated email from the ASF dual-hosted git repository. diegopucci pushed a commit to branch geido/fix/dataset-edit-icon in repository https://gitbox.apache.org/repos/asf/superset.git
commit cee88389dad12bee79bc52e845b0942fe6e6407d Author: Diego Pucci <[email protected]> AuthorDate: Sun Oct 19 15:39:59 2025 +0200 fix(Actions): Improper spacing --- superset-frontend/src/pages/DatasetList/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/superset-frontend/src/pages/DatasetList/index.tsx b/superset-frontend/src/pages/DatasetList/index.tsx index 0be5b69037..ddfa6a12e4 100644 --- a/superset-frontend/src/pages/DatasetList/index.tsx +++ b/superset-frontend/src/pages/DatasetList/index.tsx @@ -103,6 +103,9 @@ const Actions = styled.div` } } color: ${theme.colorTextDisabled}; + &:hover { + cursor: not-allowed; + } .ant-menu-item:hover { cursor: default; } @@ -479,7 +482,7 @@ const DatasetList: FunctionComponent<DatasetListProps> = ({ <span role="button" tabIndex={0} - className={allowEdit ? 'action-button' : 'disabled'} + className={`action-button ${allowEdit ? '' : 'disabled'}`} onClick={allowEdit ? handleEdit : undefined} > <Icons.EditOutlined iconSize="l" />
