-
Notifications
You must be signed in to change notification settings - Fork 3
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
Feat: add path filter to tree details #564
Conversation
fab30aa
to
fc351cc
Compare
ecf638f
to
36a1b8d
Compare
94f405c
to
5491b09
Compare
Go to this link and try filter by path. Remove the filter and try to filter by the same path again give this result
|
This behavior persist when use the filter data in the cache |
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.
Review comment about this comment
{header.id === 'path_group' ? ( | ||
<div className="flex items-center"> | ||
{headerComponent} | ||
<DebounceInput |
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.
Review about this comment
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.
Working good
{tabsTrigger} | ||
</TabsList> | ||
<div className="border-t border-darkGray py-6">{filterListElement}</div> | ||
<div className="sticky top-16 z-[5] rounded-md bg-lightGray pb-6 pt-12"> |
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.
try swapping rounded-md with drop-shadow
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.
drop-shadow
gets a bit weird when nothing else in the page has shadows, but we might try something else another time
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.
it is working fine, please create tickets for the bugs before merging
5491b09
to
ee7bbbd
Compare
ee7bbbd
to
f6c0599
Compare
How to test:
Go to tests or boots tab in any treeDetails page with boots or tests data,
Scroll down to see the sticky tab selection and filter listing,
Type something in the searchbox alongside the path column,
After a certain delay, the whole page will be filtered by passing a new diffFilter,
Check the filter listing and the diffFilter search param,
The returned data should be filtered by path, including individual tests under the external tests table.
Closes #524