X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/38d27e9783f7f760cee84cc225e86144069848c4..20063f6f7bb9ad7c6a9a0b49b3c5ba4b0abc532e:/src/store/collections/collection-update-actions.ts diff --git a/src/store/collections/collection-update-actions.ts b/src/store/collections/collection-update-actions.ts index 3f3b662fc9..a9077cfb74 100644 --- a/src/store/collections/collection-update-actions.ts +++ b/src/store/collections/collection-update-actions.ts @@ -19,6 +19,7 @@ export interface CollectionUpdateFormDialogData { uuid: string; name: string; description?: string; + storageClassesDesired?: string[]; } export const COLLECTION_UPDATE_FORM_NAME = 'collectionUpdateFormName'; @@ -37,6 +38,7 @@ export const updateCollection = (collection: CollectionUpdateFormDialogData) => services.collectionService.update(uuid, { name: collection.name, + storageClassesDesired: collection.storageClassesDesired, description: collection.description } ).then(updatedCollection => { dispatch(collectionPanelActions.LOAD_COLLECTION_SUCCESS({ item: updatedCollection as CollectionResource }));