-
Notifications
You must be signed in to change notification settings - Fork 79
SLVS-2519 Show hotspots in the report view panel #6420
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
SLVS-2519 Show hotspots in the report view panel #6420
Conversation
…d be one selection possible in the whole tree (as opposed to one per group)
…the store is updated as well
…e click and not double click
🤖 Pull Request summaryThis pull request integrates security hotspots into the Security Report view alongside the existing dependency risks functionality. Main changes:
Areas needing review focus:
|
private readonly ITelemetryManager telemetryManager; | ||
private readonly IDependencyRisksStore dependencyRisksStore; | ||
private readonly ILocalHotspotsStore hotspotsStore; | ||
private readonly object @lock = new(); |
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.
Is there a particular reason for adding the @
?
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.
The lock
is a reserved keyword in C#. 😄
973b20e
into
feature/report-view
SLVS-2519