X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/9fbb245286171bc55fed5b5104361a1869a1d76b..f9dde5c781766b8be71d43d0f031c201a0edcfbb:/src/views-components/form-fields/collection-form-fields.tsx diff --git a/src/views-components/form-fields/collection-form-fields.tsx b/src/views-components/form-fields/collection-form-fields.tsx index af240fc5..c02996d8 100644 --- a/src/views-components/form-fields/collection-form-fields.tsx +++ b/src/views-components/form-fields/collection-form-fields.tsx @@ -3,17 +3,19 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; -import { Field, WrappedFieldProps } from "redux-form"; +import { Field } from "redux-form"; import { TextField } from "~/components/text-field/text-field"; import { COLLECTION_NAME_VALIDATION, COLLECTION_DESCRIPTION_VALIDATION, COLLECTION_PROJECT_VALIDATION } from "~/validators/validators"; -import { ProjectTreePicker } from "~/views-components/project-tree-picker/project-tree-picker"; +import { ProjectTreePickerField } from "~/views-components/project-tree-picker/project-tree-picker"; +import { PickerIdProp } from '~/store/tree-picker/picker-id'; export const CollectionNameField = () => ; + label="Collection Name" + autoFocus={true} />; export const CollectionDescriptionField = () => validate={COLLECTION_DESCRIPTION_VALIDATION} label="Description - optional" />; -export const CollectionProjectPickerField = () => +export const CollectionProjectPickerField = (props: PickerIdProp) => ; - -const ProjectPicker = (props: WrappedFieldProps) => -
- props.input.onChange(projectUuid)} /> -
;