tooltips, fixed sticky header

This commit is contained in:
dekzter 2025-04-24 11:51:47 -04:00
parent 29d2db0f8e
commit abab931711
2 changed files with 4 additions and 2 deletions

View file

@ -11,7 +11,7 @@ const CustomTable = ({ table }) => {
className="divTable table-striped"
style={{
width: '100%',
height: '100%',
height: '100%', // ONLY required when using virtual tables
display: 'flex',
flexDirection: 'column',
}}

View file

@ -269,7 +269,9 @@ const StreamsTable = ({}) => {
textOverflow: 'ellipsis',
}}
>
<Text size="sm">{getValue()}</Text>
<Tooltip label={getValue()} openDelay={500}>
<Text size="sm">{getValue()}</Text>
</Tooltip>
</Box>
),
},