aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/create/project/GitHubProjectCreateRenderer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/create/project/GitHubProjectCreateRenderer.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/create/project/GitHubProjectCreateRenderer.tsx20
1 files changed, 10 insertions, 10 deletions
diff --git a/server/sonar-web/src/main/js/apps/create/project/GitHubProjectCreateRenderer.tsx b/server/sonar-web/src/main/js/apps/create/project/GitHubProjectCreateRenderer.tsx
index 35e82d7322a..2a6bf0edcbb 100644
--- a/server/sonar-web/src/main/js/apps/create/project/GitHubProjectCreateRenderer.tsx
+++ b/server/sonar-web/src/main/js/apps/create/project/GitHubProjectCreateRenderer.tsx
@@ -20,19 +20,19 @@
import * as React from 'react';
import { FormattedMessage } from 'react-intl';
import { Link } from 'react-router';
-import { Button } from 'sonar-ui-common/components/controls/buttons';
-import ListFooter from 'sonar-ui-common/components/controls/ListFooter';
-import Radio from 'sonar-ui-common/components/controls/Radio';
-import SearchBox from 'sonar-ui-common/components/controls/SearchBox';
-import SearchSelect from 'sonar-ui-common/components/controls/SearchSelect';
-import CheckIcon from 'sonar-ui-common/components/icons/CheckIcon';
-import QualifierIcon from 'sonar-ui-common/components/icons/QualifierIcon';
-import { Alert } from 'sonar-ui-common/components/ui/Alert';
-import DeferredSpinner from 'sonar-ui-common/components/ui/DeferredSpinner';
-import { translate } from 'sonar-ui-common/helpers/l10n';
import { colors } from '../../../app/theme';
import { getBaseUrl } from '../../../helpers/system';
import { getProjectUrl } from '../../../helpers/urls';
+import { Button } from '../../../sonar-ui-common/components/controls/buttons';
+import ListFooter from '../../../sonar-ui-common/components/controls/ListFooter';
+import Radio from '../../../sonar-ui-common/components/controls/Radio';
+import SearchBox from '../../../sonar-ui-common/components/controls/SearchBox';
+import SearchSelect from '../../../sonar-ui-common/components/controls/SearchSelect';
+import CheckIcon from '../../../sonar-ui-common/components/icons/CheckIcon';
+import QualifierIcon from '../../../sonar-ui-common/components/icons/QualifierIcon';
+import { Alert } from '../../../sonar-ui-common/components/ui/Alert';
+import DeferredSpinner from '../../../sonar-ui-common/components/ui/DeferredSpinner';
+import { translate } from '../../../sonar-ui-common/helpers/l10n';
import { GithubOrganization, GithubRepository } from '../../../types/alm-integration';
import { ComponentQualifier } from '../../../types/component';
import CreateProjectPageHeader from './CreateProjectPageHeader';