diff options
author | Philippe Perrin <philippe.perrin@sonarsource.com> | 2020-05-25 14:09:43 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-05-29 20:04:39 +0000 |
commit | 62d76a285dc86c756fddeb63a0b073f11ee46f25 (patch) | |
tree | c3b7258af1fffced0d7cf39e922a28e56a4e99c7 /server/sonar-web/src/main/js/apps/security-hotspots/SecurityHotspotsAppRenderer.tsx | |
parent | 09a007b18a1f4e3c2f4e3cc6a9cb1b6a0e50f3a2 (diff) | |
download | sonarqube-62d76a285dc86c756fddeb63a0b073f11ee46f25.tar.gz sonarqube-62d76a285dc86c756fddeb63a0b073f11ee46f25.zip |
SONAR-13460 Fix incorrect hotspot total count
Diffstat (limited to 'server/sonar-web/src/main/js/apps/security-hotspots/SecurityHotspotsAppRenderer.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/security-hotspots/SecurityHotspotsAppRenderer.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/security-hotspots/SecurityHotspotsAppRenderer.tsx b/server/sonar-web/src/main/js/apps/security-hotspots/SecurityHotspotsAppRenderer.tsx index 43e4dfdcf65..ca548d38de6 100644 --- a/server/sonar-web/src/main/js/apps/security-hotspots/SecurityHotspotsAppRenderer.tsx +++ b/server/sonar-web/src/main/js/apps/security-hotspots/SecurityHotspotsAppRenderer.tsx @@ -40,7 +40,7 @@ export interface SecurityHotspotsAppRendererProps { filters: HotspotFilters; hotspots: RawHotspot[]; hotspotsReviewedMeasure?: string; - hotspotsTotal?: number; + hotspotsTotal: number; isStaticListOfHotspots: boolean; loading: boolean; loadingMeasure: boolean; |