We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug I have a filter that looks like this when getting api/v1/notificationprofiles/filters/3/
api/v1/notificationprofiles/filters/3/
{ "pk": 3, "name": "NAV", "filter_string": "{\"sourceSystemIds\": [1], \"tags\": []}", "filter": { "sourceSystemIds": [ 1 ], "open": null, "acked": null, "stateful": null, "maxlevel": null, "event_type": null } }
and like this for api/v2/notificationprofiles/filters/3/
api/v2/notificationprofiles/filters/3/
{ "pk": 3, "name": "NAV", "filter": { "sourceSystemIds": [ 1 ], "open": null, "acked": null, "stateful": null, "maxlevel": null, "event_type": null } }
Note that in the filter field there is no entry for tags, which is valid for the backend.
filter
tags
When I try to filter by this filter I only get an empty page and I also see that no request to the backend is being made.
To Reproduce Steps to reproduce the behavior:
{ "name": "test", "filter": { "sourceSystemIds": [ 1 ] } }
Expected behavior To be shown the normal dashboard with the incidents included in that filter.
Screenshots
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
Reproduced
Sorry, something went wrong.
No branches or pull requests
Describe the bug
I have a filter that looks like this when getting
api/v1/notificationprofiles/filters/3/
and like this for
api/v2/notificationprofiles/filters/3/
Note that in the
filter
field there is no entry fortags
, which is valid for the backend.When I try to filter by this filter I only get an empty page and I also see that no request to the backend is being made.
To Reproduce
Steps to reproduce the behavior:
tags
will be an empty list) with this content:Expected behavior
To be shown the normal dashboard with the incidents included in that filter.
Screenshots
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: