diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users/components/GroupsForm.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/users/components/GroupsForm.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/components/GroupsForm.tsx b/server/sonar-web/src/main/js/apps/users/components/GroupsForm.tsx index f2ec536dd3e..b08e6e2f428 100644 --- a/server/sonar-web/src/main/js/apps/users/components/GroupsForm.tsx +++ b/server/sonar-web/src/main/js/apps/users/components/GroupsForm.tsx @@ -19,14 +19,14 @@ */ import { find, without } from 'lodash'; import * as React from 'react'; -import Modal from 'sonar-ui-common/components/controls/Modal'; +import { getUserGroups, UserGroup } from '../../../api/users'; +import { addUserToGroup, removeUserFromGroup } from '../../../api/user_groups'; +import Modal from '../../../sonar-ui-common/components/controls/Modal'; import SelectList, { SelectListFilter, SelectListSearchParams -} from 'sonar-ui-common/components/controls/SelectList'; -import { translate } from 'sonar-ui-common/helpers/l10n'; -import { getUserGroups, UserGroup } from '../../../api/users'; -import { addUserToGroup, removeUserFromGroup } from '../../../api/user_groups'; +} from '../../../sonar-ui-common/components/controls/SelectList'; +import { translate } from '../../../sonar-ui-common/helpers/l10n'; interface Props { onClose: () => void; |