diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/components/EmptyOverview.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/overview/components/EmptyOverview.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/components/EmptyOverview.tsx b/server/sonar-web/src/main/js/apps/overview/components/EmptyOverview.tsx index 633b7587789..c60873f126c 100644 --- a/server/sonar-web/src/main/js/apps/overview/components/EmptyOverview.tsx +++ b/server/sonar-web/src/main/js/apps/overview/components/EmptyOverview.tsx @@ -22,12 +22,12 @@ import { FormattedMessage } from 'react-intl'; import { connect } from 'react-redux'; import { Alert } from 'sonar-ui-common/components/ui/Alert'; import { translate } from 'sonar-ui-common/helpers/l10n'; +import AnalyzeTutorial from '../../../components/tutorials/manual/AnalyzeTutorial'; import { getBranchLikeDisplayName, isBranch, isMainBranch } from '../../../helpers/branch-like'; import { isLoggedIn } from '../../../helpers/users'; import { getCurrentUser, Store } from '../../../store/rootReducer'; import { BranchLike } from '../../../types/branch-like'; import { ComponentQualifier } from '../../../types/component'; -import AnalyzeTutorial from '../../tutorials/analyzeProject/AnalyzeTutorial'; interface Props { branchLike?: BranchLike; |