-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(recordings): fix recording filters from being cutoff in nested archived recordings tables #557
Conversation
Currently investigating how to fix the tests since I added a prop |
Nicee catch! Could you also change the
Look like the toolbar now is in a constrainted container (i.e. |
Also, on this topic, this issue seems to be caused by the table having
Then, all filters must be checked to avoid being cut-off. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Just another notice about the filter selects:
Looks like the select menu is not scrollable and could go as long as it needs. I think we should allow scrolling. This could be done by setting maxHeight
on Select (Reference):
<Select maxHeight={"300px"}>
{options}
</Select>
What do you think?
If that |
While you're at that, please update these two src/app/SecurityPanel/Credentials/MatchedTargetsTable.tsx
126: <InnerScrollContainer style={{ height: '300px' }}>
src/app/app.css
81: height: 512px; |
This PR/issue depends on:
|
…et to default inline in the snapshot tests
…above, and changed the recordings headers to always be sticky, fixed tests
ca11d4c
to
c4668bb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks nicee! Fixed the bug :D
…chived recordings tables (#557) * fixed issues * just add an optional menuAppendTo option in []Filter components and set to default inline in the snapshot tests * prettier * changed z-index of recording table so that filter dropdown is always above, and changed the recordings headers to always be sticky, fixed tests * prettier * adjusted px heights to relative heights * change filter select size 10em -> 16em * prettier * fixed max-height to height for recording table container (cherry picked from commit e41e2c8)
…chived recordings tables (#557) (#562) * fixed issues * just add an optional menuAppendTo option in []Filter components and set to default inline in the snapshot tests * prettier * changed z-index of recording table so that filter dropdown is always above, and changed the recordings headers to always be sticky, fixed tests * prettier * adjusted px heights to relative heights * change filter select size 10em -> 16em * prettier * fixed max-height to height for recording table container (cherry picked from commit e41e2c8) Co-authored-by: Max Cao <macao@redhat.com>
Fixes #556
Depends on #555