X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/a2bf1ed3a15cf55e426c51ad8e6febd7ff2e3020..e952a4d2fac7c75375a9307f7f6676bd950bd0ed:/src/store/collections/collection-copy-actions.ts?ds=inline diff --git a/src/store/collections/collection-copy-actions.ts b/src/store/collections/collection-copy-actions.ts index 058d2dd4..d0387609 100644 --- a/src/store/collections/collection-copy-actions.ts +++ b/src/store/collections/collection-copy-actions.ts @@ -30,10 +30,10 @@ export const copyCollection = (resource: CopyFormDialogData) => const collection = await services.collectionService.get(resource.uuid); const uuidKey = 'uuid'; delete collection[uuidKey]; - await services.collectionService.create({ ...collection, ownerUuid: resource.ownerUuid, name: resource.name }); + const newCollection = await services.collectionService.create({ ...collection, ownerUuid: resource.ownerUuid, name: resource.name }); dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_COPY_FORM_NAME })); dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_COPY_FORM_NAME)); - return collection; + return newCollection; } catch (e) { const error = getCommonResourceServiceError(e); if (error === CommonResourceServiceError.UNIQUE_VIOLATION) {