X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/116c09a69fd71a9e80d8c49d21302574bbff9068..618af1a3106c399765788be4583463ab35d97cd5:/src/views-components/dialog-forms/create-group-dialog.tsx diff --git a/src/views-components/dialog-forms/create-group-dialog.tsx b/src/views-components/dialog-forms/create-group-dialog.tsx index ff692fbd..fceea262 100644 --- a/src/views-components/dialog-forms/create-group-dialog.tsx +++ b/src/views-components/dialog-forms/create-group-dialog.tsx @@ -2,16 +2,16 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { compose } from "redux"; import { reduxForm, InjectedFormProps, Field, WrappedFieldArrayProps, FieldArray } from 'redux-form'; -import { withDialog, WithDialogProps } from "~/store/dialog/with-dialog"; -import { FormDialog } from '~/components/form-dialog/form-dialog'; -import { CREATE_GROUP_DIALOG, CREATE_GROUP_FORM, createGroup, CreateGroupFormData, CREATE_GROUP_NAME_FIELD_NAME, CREATE_GROUP_USERS_FIELD_NAME } from '~/store/groups-panel/groups-panel-actions'; -import { TextField } from '~/components/text-field/text-field'; -import { maxLength } from '~/validators/max-length'; -import { require } from '~/validators/require'; -import { PeopleSelect, Person } from '~/views-components/sharing-dialog/people-select'; +import { withDialog, WithDialogProps } from "store/dialog/with-dialog"; +import { FormDialog } from 'components/form-dialog/form-dialog'; +import { CREATE_GROUP_DIALOG, CREATE_GROUP_FORM, createGroup, CreateGroupFormData, CREATE_GROUP_NAME_FIELD_NAME, CREATE_GROUP_USERS_FIELD_NAME } from 'store/groups-panel/groups-panel-actions'; +import { TextField } from 'components/text-field/text-field'; +import { maxLength } from 'validators/max-length'; +import { require } from 'validators/require'; +import { ParticipantSelect, Participant } from 'views-components/sharing-dialog/participant-select'; export const CreateGroupDialog = compose( withDialog(CREATE_GROUP_DIALOG), @@ -42,7 +42,7 @@ const CreateGroupFormFields = () => const GroupNameField = () => ; @@ -52,10 +52,10 @@ const GROUP_NAME_VALIDATION = [require, maxLength(255)]; const UsersField = () => ; + component={UsersSelect as any} />; -const UsersSelect = ({ fields }: WrappedFieldArrayProps) => - ) => +