diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2019-04-05 10:58:53 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-04-23 20:21:09 +0200 |
commit | 4f885e88db04134cea9d500e89f28e6a09b65db2 (patch) | |
tree | 35909428587fcc68ccbcb14453f9c1da996769ce /server/sonar-web/src/main/js/components/facet | |
parent | 867949e745986a6113051381267edf25ed462968 (diff) | |
download | sonarqube-4f885e88db04134cea9d500e89f28e6a09b65db2.tar.gz sonarqube-4f885e88db04134cea9d500e89f28e6a09b65db2.zip |
SONAR-11886 Highlight Hotspots in issues page
* Update see rule button style in issues
* Update selected and hover styling of concise issues
* Update issues selected and hover styling
* Issues type facet don't filter out hotspots by default anymore
* Update issue box styling for hotspots
* Automatically open severity & standard facet based on the issue type
* Add security hotspots newsbox on issues page
* Update clear icon and close buttons
* Allow to dismiss hotspots newsbox on issues page
* Display help tooltip on hotspots entry of the types facet
Diffstat (limited to 'server/sonar-web/src/main/js/components/facet')
-rw-r--r-- | server/sonar-web/src/main/js/components/facet/FacetItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/facet/FacetItem.tsx b/server/sonar-web/src/main/js/components/facet/FacetItem.tsx index 1445de30906..e9e25e70613 100644 --- a/server/sonar-web/src/main/js/components/facet/FacetItem.tsx +++ b/server/sonar-web/src/main/js/components/facet/FacetItem.tsx @@ -29,7 +29,7 @@ export interface Props { onClick: (x: string, multiple?: boolean) => void; stat?: React.ReactNode; /** Textual version of `name` */ - tooltip: string; + tooltip?: string; value: string; } |