diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2019-04-10 15:48:31 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2019-05-06 11:01:14 +0200 |
commit | 0de67f888cd2cc48e7097caaf1860e4985f751c5 (patch) | |
tree | 96ae9111a35ef487e43a1c3f752e7cfb765ee2d3 /server/sonar-web/src/main/js/components/SourceViewer/SourceViewerCode.tsx | |
parent | 570316af531be1479cb7fa504c9ba9777babbd03 (diff) | |
download | sonarqube-0de67f888cd2cc48e7097caaf1860e4985f751c5.tar.gz sonarqube-0de67f888cd2cc48e7097caaf1860e4985f751c5.zip |
SONAR-11900 Remove location counter from issues in the code viewer and issue list
Diffstat (limited to 'server/sonar-web/src/main/js/components/SourceViewer/SourceViewerCode.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/SourceViewer/SourceViewerCode.tsx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/components/SourceViewer/SourceViewerCode.tsx b/server/sonar-web/src/main/js/components/SourceViewer/SourceViewerCode.tsx index 923f3b6ff9f..cac8ee2dec8 100644 --- a/server/sonar-web/src/main/js/components/SourceViewer/SourceViewerCode.tsx +++ b/server/sonar-web/src/main/js/components/SourceViewer/SourceViewerCode.tsx @@ -37,8 +37,6 @@ interface Props { branchLike: T.BranchLike | undefined; componentKey: string; displayAllIssues?: boolean; - displayIssueLocationsCount?: boolean; - displayIssueLocationsLink?: boolean; displayLocationMarkers?: boolean; duplications: T.Duplication[] | undefined; duplicationsByLine: { [line: number]: number[] }; @@ -159,8 +157,6 @@ export default class SourceViewerCode extends React.PureComponent<Props> { displayAllIssues={this.props.displayAllIssues} displayCoverage={displayCoverage} displayDuplications={displayDuplications} - displayIssueLocationsCount={this.props.displayIssueLocationsCount} - displayIssueLocationsLink={this.props.displayIssueLocationsLink} displayIssues={displayIssues} displayLocationMarkers={this.props.displayLocationMarkers} duplications={this.getDuplicationsForLine(line)} |