15768: process outputs no longer disappear on reload Arvados-DCO-1.1-Signed-off-by...
[arvados-workbench2.git] / src / store / collections / collection-copy-actions.ts
index e454712a77555437a0e0e60c43bb020539e084bd..1784650d3760278875d7dcb0ae9bb4e9512e4077 100644 (file)
@@ -37,7 +37,6 @@ export const openMultiCollectionCopyDialog = (resource: { name: string; uuid: st
 
 export const copyCollection =
     (resource: CopyFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
-        console.log("COPYCOLL", resource);
         const formName = resource.isSingle ? COLLECTION_COPY_FORM_NAME : COLLECTION_MULTI_COPY_FORM_NAME;
         dispatch(startSubmit(formName));
         let collection = getResource<CollectionResource>(resource.uuid)(getState().resources);