diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2019-03-28 11:24:57 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-04-08 20:21:06 +0200 |
commit | 1a23c21e5fe842d3ab9b8a5fdab74f930b8a1f6d (patch) | |
tree | ab4ee68129015ee66b2f2bdacd4fe0b1295b7ef0 | |
parent | 5cd8d9390415373044bf4e69edc56a14bd014110 (diff) | |
download | sonarqube-1a23c21e5fe842d3ab9b8a5fdab74f930b8a1f6d.tar.gz sonarqube-1a23c21e5fe842d3ab9b8a5fdab74f930b8a1f6d.zip |
SONAR-11793 Always enable the use of Google Analytics if 'sonar.analytics.trackingId' is provided
-rw-r--r-- | server/sonar-web/src/main/js/app/components/App.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/app/components/App.tsx b/server/sonar-web/src/main/js/app/components/App.tsx index ea15e621a32..1d9378e9c74 100644 --- a/server/sonar-web/src/main/js/app/components/App.tsx +++ b/server/sonar-web/src/main/js/app/components/App.tsx @@ -105,7 +105,7 @@ class App extends React.PureComponent<Props> { <Helmet defaultTitle={getInstance()}> {this.props.enableGravatar && this.renderPreconnectLink()} </Helmet> - {isSonarCloud() && <PageTracker />} + <PageTracker /> {this.props.children} </> ); |