-
Notifications
You must be signed in to change notification settings - Fork 165
The exceptions in the exception overview are searchable! #501
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
base: feature/exn-monitoring
Are you sure you want to change the base?
The exceptions in the exception overview are searchable! #501
Conversation
In screenshots, it looks like there are multiple pages, even when there are only two exceptions queried after filtering. The pagination is probably only considering the full amount of exceptions and not the amount after filtering. We might need to include the filter parameters in the count functions, not only the get functions. |
5da52ca
to
257dc7d
Compare
|
||
const getQueryString = function () { | ||
removeUnwelcomeParameters(); | ||
let query = decodeURI(window.location.search); |
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.
Maybe use the object new URLSearchParams(window.location.search)? It has the .keys() function that could save us some splits and parsing maybe?
Otherwise everything looks good
A user can now search/filter exceptions in the exception overview.
The specific filters can also be specified in the search box
How it looks