wrap and tooltip for parameters

This commit is contained in:
dekzter 2025-05-24 07:17:46 -04:00
parent f4381c9740
commit 31293ebc44

View file

@ -99,15 +99,17 @@ const StreamProfiles = () => {
accessorKey: 'parameters',
// size: 200,
cell: ({ cell }) => (
<div
style={{
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis',
}}
>
{cell.getValue()}
</div>
<Tooltip label={cell.getValue()}>
<div
style={{
whiteSpace: 'nowrap',
overflow: 'hidden',
textOverflow: 'ellipsis',
}}
>
{cell.getValue()}
</div>
</Tooltip>
),
},
{