mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
tooltips, fixed sticky header
This commit is contained in:
parent
29d2db0f8e
commit
abab931711
2 changed files with 4 additions and 2 deletions
|
|
@ -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',
|
||||
}}
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
),
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue