diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2019-07-16 13:12:16 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-07-16 20:21:10 +0200 |
commit | 03bb045cca26245804592602c7ff0c6e477f3b8d (patch) | |
tree | 0d2e536a64eb136b5eafb77955794e0244e5169a /server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx | |
parent | 5ed20116d427b617b04e93bb4f2937ad6692803a (diff) | |
download | sonarqube-03bb045cca26245804592602c7ff0c6e477f3b8d.tar.gz sonarqube-03bb045cca26245804592602c7ff0c6e477f3b8d.zip |
SC-704 Extract more components (#1921)
* Extract BoxedGroupAccordion
* Extract Select and SearchSelect
* Extract Validation controls
* Update sonar-ui-common
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx b/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx index 60cf8af8227..0f3a3778785 100644 --- a/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx +++ b/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx @@ -20,8 +20,8 @@ import * as React from 'react'; import { debounce } from 'lodash'; import { translate, translateWithParameters } from 'sonar-ui-common/helpers/l10n'; +import Select from 'sonar-ui-common/components/controls/Select'; import Avatar from '../../../components/ui/Avatar'; -import Select from '../../../components/controls/Select'; interface Option { login: string; |