fix(style): table cell overflow

This commit is contained in:
jialin
2026-06-03 15:50:06 +08:00
committed by jialin
parent 9f7a99f370
commit 9541f49f39
11 changed files with 40 additions and 12 deletions
+1 -1
View File
@@ -138,7 +138,7 @@ const useUsersColumns = ({
key: 'username',
sorter: tableSorter(1),
render: (text: string, record: ListItem) => (
<AutoTooltip ghost style={{ maxWidth: 400 }}>
<AutoTooltip ghost style={{ maxWidth: 400 }} title={text}>
<span className="text-primary">{text}</span>
</AutoTooltip>
)