X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f0aac0b9747eac597ed42e5169be73cf6fbad410..dbbaaf10b4f87f30a3d15480b9d27dc909d5c4e1:/src/views-components/resource-properties-form/property-value-field.tsx diff --git a/src/views-components/resource-properties-form/property-value-field.tsx b/src/views-components/resource-properties-form/property-value-field.tsx index db2db3f7..13dcfeb5 100644 --- a/src/views-components/resource-properties-form/property-value-field.tsx +++ b/src/views-components/resource-properties-form/property-value-field.tsx @@ -15,7 +15,7 @@ interface PropertyKeyProp { propertyKey: string; } -type PropertyValueFieldProps = VocabularyProp & PropertyKeyProp; +export type PropertyValueFieldProps = VocabularyProp & PropertyKeyProp; export const PROPERTY_VALUE_FIELD_NAME = 'value'; @@ -30,7 +30,7 @@ export const PropertyValueField = compose( validate={getValidation(props)} {...props} />); -const PropertyValueInput = ({ vocabulary, propertyKey, ...props }: WrappedFieldProps & PropertyValueFieldProps) => +export const PropertyValueInput = ({ vocabulary, propertyKey, ...props }: WrappedFieldProps & PropertyValueFieldProps) =>