X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/6521d10377432141aaec5408dbfba2952bf0656e..4f88234088269faa064da9459376c3af2a740a7d:/src/views-components/collection-properties/update-collection-properties-form.tsx?ds=sidebyside 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 13a29ad4..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,9 +2,10 @@ // // 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, COLLECTION_UPDATE_PROPERTIES_FORM_NAME } from 'store/collections/collection-update-actions'; import { @@ -12,12 +13,12 @@ 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 }) => ( { container: { - paddingTop: spacing.unit, margin: 0, } }) @@ -26,7 +27,7 @@ const Form = withStyles( export const UpdateCollectionPropertiesForm = reduxForm({ form: COLLECTION_UPDATE_PROPERTIES_FORM_NAME, onSubmit: (data, dispatch) => { - dispatch(addPropertyToResourceForm(data, COLLECTION_UPDATE_PROPERTIES_FORM_NAME)); - dispatch(reset(COLLECTION_UPDATE_PROPERTIES_FORM_NAME)); + dispatch(addPropertyToResourceForm(data, COLLECTION_UPDATE_FORM_NAME)); + dispatch(change(COLLECTION_UPDATE_PROPERTIES_FORM_NAME, PROPERTY_VALUE_FIELD_NAME, '')); } })(Form); \ No newline at end of file