-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Security Solution] [Exceptions] Adds a new react route for viewing details about an individual exception list #144754
Conversation
…-ref HEAD~1..HEAD --fix'
… list-details-route
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.
🥳
Pinging @elastic/fleet (Team:Fleet) |
...ic/applications/fleet/components/fleet_server_instructions/hooks/use_latest_fleet_servers.ts
Outdated
Show resolved
Hide resolved
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.
only whitespace change
… shared lists and the endpoint exception list on the manage shared exception lists page
return ALL_ENDPOINT_ARTIFACT_LIST_IDS.includes(listId) ? ( | ||
<NotFoundPage /> | ||
) : ( | ||
<EuiTitle> | ||
<h2>{listId}</h2> | ||
</EuiTitle> | ||
); | ||
}); |
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.
@paul-tavares How does this look for a start?
types: [ExceptionListTypeEnum.DETECTION, ExceptionListTypeEnum.ENDPOINT], | ||
}); |
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.
@WafaaNasr @peluja1012 This PR adds a filter to only display shared lists and the endpoint list.
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.
Thanks Devin 🥳
onClick={goToExceptionDetail} | ||
> | ||
{listName} | ||
</EuiLink>{' '} |
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.
{' '}
I think this space is unwanted :D
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.
ah interesting - not sure how that got in there. Thanks!
💛 Build succeeded, but was flaky
Failed CI StepsTest Failures
Metrics [docs]Module Count
Async chunks
Page load bundle
Unknown metric groupsESLint disabled in files
ESLint disabled line counts
Total ESLint disabled count
History
To update your PR or re-run it, just comment with: cc @dhurley14 |
Summary
Clicking on the link for an individual exception list will route users to the detail view. Currently only displays the list id on the detail view.