diff options
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/GlobalFooter.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/GlobalFooter.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/app/components/GlobalFooter.tsx b/server/sonar-web/src/main/js/app/components/GlobalFooter.tsx index be0881f79df..b426464f053 100644 --- a/server/sonar-web/src/main/js/app/components/GlobalFooter.tsx +++ b/server/sonar-web/src/main/js/app/components/GlobalFooter.tsx @@ -22,7 +22,7 @@ import { Link } from 'react-router'; import GlobalFooterSonarCloud from './GlobalFooterSonarCloud'; import GlobalFooterBranding from './GlobalFooterBranding'; import InstanceMessage from '../../components/common/InstanceMessage'; -import { EDITIONS, EditionKey } from '../../apps/marketplace/utils'; +import { EDITIONS } from '../../apps/marketplace/utils'; import { translate, translateWithParameters } from '../../helpers/l10n'; import { isSonarCloud } from '../../helpers/system'; import { Alert } from '../../components/ui/Alert'; @@ -30,7 +30,7 @@ import { Alert } from '../../components/ui/Alert'; interface Props { hideLoggedInInfo?: boolean; productionDatabase: boolean; - sonarqubeEdition?: EditionKey; + sonarqubeEdition?: T.EditionKey; sonarqubeVersion?: string; } |