fix(aci): Include project alerts on monitor list page#111690
Merged
fix(aci): Include project alerts on monitor list page#111690
Conversation
saponifi3d
approved these changes
Mar 26, 2026
Comment on lines
22
to
+23
| automationIds: string[]; | ||
| projectId: string; |
Contributor
There was a problem hiding this comment.
Nit: could we use an Indexed Access Type for these? Project["id"] kind of thing, so we can rely on a single type defintion?
| }); | ||
| return useDetectorsQuery( | ||
| { | ||
| query: 'type:issue_stream', |
Contributor
There was a problem hiding this comment.
just curious.. how hard would it be to rename the IssueStream to Issue Feed for ui components? (something tells me that issue stream isn't going to stick around, so mostly just trying to understand the blast radius)
Member
Author
Comment on lines
+56
to
+57
| automationIds={detector.workflowIds} | ||
| projectId={detector.projectId} |
Contributor
There was a problem hiding this comment.
nit: should we just pass the detector as the prop so we can strictly type it and have access to any other data we might need?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Closes ISWF-2228
On the monitor list views we are only showing the directly-connected alerts. The detail pages already show the full list including project-connected alerts. This simply adds the functionality to the list view.
Before:
After:
