X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/b130d8595d05d46f2f29ebe4c1cf3dff392bc26b..4c0099ec3509061ca3f507658689bf3bba77e5ea:/src/views-components/collection-properties/update-collection-properties-form.tsx diff --git a/src/views-components/collection-properties/update-collection-properties-form.tsx b/src/views-components/collection-properties/update-collection-properties-form.tsx index 9092c7cc..3ab425f1 100644 --- a/src/views-components/collection-properties/update-collection-properties-form.tsx +++ b/src/views-components/collection-properties/update-collection-properties-form.tsx @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { reduxForm, reset } from 'redux-form'; +import { reduxForm, change } from 'redux-form'; import { withStyles } from '@material-ui/core'; import { COLLECTION_UPDATE_FORM_NAME, @@ -13,6 +13,7 @@ import { ResourcePropertiesFormData } from 'views-components/resource-properties-form/resource-properties-form'; import { addPropertyToResourceForm } from 'store/resources/resources-actions'; +import { PROPERTY_VALUE_FIELD_NAME } from 'views-components/resource-properties-form/property-value-field'; const Form = withStyles( ({ spacing }) => ( @@ -27,6 +28,6 @@ export const UpdateCollectionPropertiesForm = reduxForm { dispatch(addPropertyToResourceForm(data, COLLECTION_UPDATE_FORM_NAME)); - dispatch(reset(COLLECTION_UPDATE_PROPERTIES_FORM_NAME)); + dispatch(change(COLLECTION_UPDATE_PROPERTIES_FORM_NAME, PROPERTY_VALUE_FIELD_NAME, '')); } })(Form); \ No newline at end of file