style: table header text-overflow

This commit is contained in:
jialin
2025-11-21 16:56:23 +08:00
parent ff67fba2c9
commit e80ecfac8d
2 changed files with 9 additions and 3 deletions
@@ -282,6 +282,7 @@ const useFilesColumns = (props: {
{
title: intl.formatMessage({ id: 'resources.worker' }),
dataIndex: 'worker_name',
width: '18%',
ellipsis: {
showTitle: false
},
@@ -296,7 +297,7 @@ const useFilesColumns = (props: {
{
title: intl.formatMessage({ id: 'common.table.status' }),
dataIndex: 'state',
width: 132,
width: 160,
render: (text: string, record: ListItem) => {
return <InstanceStatusTag data={record} />;
}