fix(style): table cell overflow
This commit is contained in:
@@ -51,7 +51,7 @@ const useGPUColumns = (props: {
|
||||
minWidth: 32,
|
||||
sorter: tableSorter(1),
|
||||
render: (text: string, record: GPUDeviceItem) => (
|
||||
<AutoTooltip ghost maxWidth={240}>
|
||||
<AutoTooltip ghost maxWidth={240} title={text}>
|
||||
<span className="text-primary">{text}</span>
|
||||
</AutoTooltip>
|
||||
)
|
||||
|
||||
@@ -390,7 +390,7 @@ const useWorkerColumns = ({
|
||||
sorter: tableSorter(1),
|
||||
render: (text: string, record: ListItem) => (
|
||||
<div className={workerCss.name}>
|
||||
<AutoTooltip ghost maxWidth={200}>
|
||||
<AutoTooltip ghost maxWidth={200} title={text}>
|
||||
<span className="name-text">{text}</span>
|
||||
</AutoTooltip>
|
||||
{renderVersionInfo(record)}
|
||||
|
||||
Reference in New Issue
Block a user