diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/meta/Meta.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/overview/meta/Meta.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/meta/Meta.js b/server/sonar-web/src/main/js/apps/overview/meta/Meta.js index 61e26530eee..a0b76bf0690 100644 --- a/server/sonar-web/src/main/js/apps/overview/meta/Meta.js +++ b/server/sonar-web/src/main/js/apps/overview/meta/Meta.js @@ -39,8 +39,6 @@ const Meta = ({ component, measures }) => { const shouldShowQualityProfiles = !isView && !isDeveloper && hasQualityProfiles; const shouldShowQualityGate = !isView && !isDeveloper && hasQualityGate; - const showShowAnalyses = isProject || isView || isDeveloper; - return ( <div className="overview-meta"> {hasDescription && ( @@ -63,7 +61,7 @@ const Meta = ({ component, measures }) => { <MetaKey component={component}/> - {showShowAnalyses && ( + {isProject && ( <AnalysesList project={component.key}/> )} </div> |