From 3d4c362f1d95f5d093fb2c99ad999cc3f93cef05 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Wed, 16 Nov 2016 13:46:17 +0100 Subject: [PATCH] SONAR-8382 fix sign up, fix image urls --- .../sonar-web/src/main/js/apps/about/components/AboutApp.js | 2 +- .../src/main/js/apps/about/components/AboutLeakPeriod.js | 4 ++-- .../src/main/js/apps/about/components/AboutQualityGates.js | 4 ++-- .../src/main/js/apps/about/components/AboutStandards.js | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/server/sonar-web/src/main/js/apps/about/components/AboutApp.js b/server/sonar-web/src/main/js/apps/about/components/AboutApp.js index 05c0e1e39e1..f6138107d1d 100644 --- a/server/sonar-web/src/main/js/apps/about/components/AboutApp.js +++ b/server/sonar-web/src/main/js/apps/about/components/AboutApp.js @@ -107,7 +107,7 @@ export default class AboutApp extends React.Component { )} - {signUpAllowed && ( + {signUpAllowed && !isAuthenticated && (
No account yet? Sign up
diff --git a/server/sonar-web/src/main/js/apps/about/components/AboutLeakPeriod.js b/server/sonar-web/src/main/js/apps/about/components/AboutLeakPeriod.js index 47d4a029604..ec0d784447a 100644 --- a/server/sonar-web/src/main/js/apps/about/components/AboutLeakPeriod.js +++ b/server/sonar-web/src/main/js/apps/about/components/AboutLeakPeriod.js @@ -26,8 +26,8 @@ export default class AboutLeakPeriod extends React.Component { return (
- Understanding the Leak Period + Understanding the Leak Period

Understanding the Leak Period

The leak metaphor and the default Quality Gate are based on the leak period - the recent period against diff --git a/server/sonar-web/src/main/js/apps/about/components/AboutQualityGates.js b/server/sonar-web/src/main/js/apps/about/components/AboutQualityGates.js index 843403b049d..fdff94ba13a 100644 --- a/server/sonar-web/src/main/js/apps/about/components/AboutQualityGates.js +++ b/server/sonar-web/src/main/js/apps/about/components/AboutQualityGates.js @@ -26,8 +26,8 @@ export default class AboutQualityGates extends React.Component { return (

- Understanding Quality Gates + Understanding Quality Gates

Understanding Quality Gates

Your project's quality gate is the set of conditions the project must meet before it can be released diff --git a/server/sonar-web/src/main/js/apps/about/components/AboutStandards.js b/server/sonar-web/src/main/js/apps/about/components/AboutStandards.js index 874ee4ee671..7ecf3e4c4a2 100644 --- a/server/sonar-web/src/main/js/apps/about/components/AboutStandards.js +++ b/server/sonar-web/src/main/js/apps/about/components/AboutStandards.js @@ -26,8 +26,8 @@ export default class AboutStandards extends React.Component { return (

- Conform to recognized standards + Conform to recognized standards

Conform to recognized standards

SonarAnalyzers offer rules that support industry standards: MISRA, CERT, CWE, OWASP Top 10 and SANS Top -- 2.39.5