This is an automated email from the ASF dual-hosted git repository.

kgabryje pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new b225432c55 fix: Unexpected overflow ellipsis dots after status icon in 
Dashboard list (#34798)
b225432c55 is described below

commit b225432c556c9254b8d2c1d8879d895aabe33ab5
Author: Kamil Gabryjelski <[email protected]>
AuthorDate: Mon Aug 25 14:03:31 2025 +0200

    fix: Unexpected overflow ellipsis dots after status icon in Dashboard list 
(#34798)
---
 .../packages/superset-ui-core/src/components/Table/index.tsx          | 4 ++++
 .../superset-ui-core/src/components/TableCollection/utils.tsx         | 2 ++
 superset-frontend/src/pages/DashboardList/index.tsx                   | 1 +
 3 files changed, 7 insertions(+)

diff --git 
a/superset-frontend/packages/superset-ui-core/src/components/Table/index.tsx 
b/superset-frontend/packages/superset-ui-core/src/components/Table/index.tsx
index 945183d7bd..3f7ad804a7 100644
--- a/superset-frontend/packages/superset-ui-core/src/components/Table/index.tsx
+++ b/superset-frontend/packages/superset-ui-core/src/components/Table/index.tsx
@@ -180,6 +180,10 @@ const StyledTable = styled(AntTable as 
FC<AntTableProps>)<{ height?: number }>(
       text-overflow: ellipsis;
     }
 
+    td.ant-table-cell.no-ellipsis {
+      text-overflow: unset;
+    }
+
     .ant-table-tbody > tr > td {
       white-space: nowrap;
       overflow: hidden;
diff --git 
a/superset-frontend/packages/superset-ui-core/src/components/TableCollection/utils.tsx
 
b/superset-frontend/packages/superset-ui-core/src/components/TableCollection/utils.tsx
index b0e31e381b..5a17ecc555 100644
--- 
a/superset-frontend/packages/superset-ui-core/src/components/TableCollection/utils.tsx
+++ 
b/superset-frontend/packages/superset-ui-core/src/components/TableCollection/utils.tsx
@@ -56,6 +56,7 @@ type EnhancedColumnInstance<T extends object = any> = 
RTColumnInstance<T> &
   Partial<UseResizeColumnsColumnProps<T>> & {
     hidden?: boolean;
     size?: keyof typeof COLUMN_SIZE_MAP;
+    className?: string;
   };
 
 type EnhancedHeaderGroup<T extends object = any> = RTHeaderGroup<T> & {
@@ -122,6 +123,7 @@ export function mapColumns<T extends object>(
         }
         return val;
       },
+      className: column.className,
     };
   });
 }
diff --git a/superset-frontend/src/pages/DashboardList/index.tsx 
b/superset-frontend/src/pages/DashboardList/index.tsx
index ce1c601903..8fedfdaa64 100644
--- a/superset-frontend/src/pages/DashboardList/index.tsx
+++ b/superset-frontend/src/pages/DashboardList/index.tsx
@@ -361,6 +361,7 @@ function DashboardList(props: DashboardListProps) {
         accessor: 'published',
         size: 'sm',
         id: 'published',
+        className: 'no-ellipsis',
       },
       {
         Cell: ({

Reply via email to