aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx7
1 files changed, 2 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx b/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx
index 49d6d804a73..7cc9c62cfe9 100644
--- a/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx
+++ b/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotSnippetContainerRenderer.tsx
@@ -108,8 +108,8 @@ export default function HotspotSnippetContainerRenderer(
[hotspot, secondaryLocationSelected, props.onCommentButtonClick]
);
- const renderHotspotBoxInLine = (lineNumber: number) =>
- lineNumber === hotspot.line ? hotspotPrimaryLocationBox : undefined;
+ const renderHotspotBoxInLine = (line: SourceLine) =>
+ line.line === hotspot.line ? hotspotPrimaryLocationBox : undefined;
const highlightedLocation =
selectedHotspotLocation !== undefined
@@ -126,7 +126,6 @@ export default function HotspotSnippetContainerRenderer(
<DeferredSpinner className="big-spacer" loading={loading}>
{sourceLines.length > 0 && (
<SnippetViewer
- branchLike={undefined}
component={sourceViewerFile}
displayLineNumberOptions={false}
displaySCM={false}
@@ -142,8 +141,6 @@ export default function HotspotSnippetContainerRenderer(
lastSnippetOfLastGroup={false}
locations={secondaryLocations}
locationsByLine={primaryLocations}
- onIssueChange={noop}
- onIssuePopupToggle={noop}
onLocationSelect={props.onLocationSelect}
openIssuesByLine={{}}
renderAdditionalChildInLine={renderHotspotBoxInLine}