Commit 5593e2a4 by zhaochengxiang

URI复制

parent 29f46d9c
...@@ -287,9 +287,18 @@ const ModelTable = (props) => { ...@@ -287,9 +287,18 @@ const ModelTable = (props) => {
width: 170, width: 170,
render: (text, _, __) => { render: (text, _, __) => {
return ( return (
<Tooltip title={text||''} overlayClassName='tooltip-common'> <React.Fragment>
<Text ellipsis={true}>{text||''}</Text> {
</Tooltip> text ? <div className='flex'>
<Tooltip title={text||''} overlayClassName='tooltip-common'>
<Text ellipsis={true}>
{text||''}
</Text>
</Tooltip>
<Text copyable={{ text }}></Text>
</div> : ''
}
</React.Fragment>
); );
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment