diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projects/components/AllProjects.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projects/components/AllProjects.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/projects/components/AllProjects.tsx b/server/sonar-web/src/main/js/apps/projects/components/AllProjects.tsx index 38fa2a56eaf..ed14cc84902 100644 --- a/server/sonar-web/src/main/js/apps/projects/components/AllProjects.tsx +++ b/server/sonar-web/src/main/js/apps/projects/components/AllProjects.tsx @@ -33,8 +33,9 @@ import { translate } from '../../../helpers/l10n'; import { addSideBarClass, removeSideBarClass } from '../../../helpers/pages'; import { get, save } from '../../../helpers/storage'; import { isLoggedIn } from '../../../helpers/users'; +import { AppState } from '../../../types/appstate'; import { ComponentQualifier } from '../../../types/component'; -import { AppState, CurrentUser, RawQuery } from '../../../types/types'; +import { CurrentUser, RawQuery } from '../../../types/types'; import { hasFilterParams, hasViewParams, parseUrlQuery, Query } from '../query'; import '../styles.css'; import { Facets, Project } from '../types'; |