X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/25216cc7acedc987c26a159f0b640210c0ef101e..4a4da2249d80ed4116f534689684abff61ee2cd9:/src/store/file-uploader/file-uploader-actions.ts diff --git a/src/store/file-uploader/file-uploader-actions.ts b/src/store/file-uploader/file-uploader-actions.ts index 8436c485..a397bbd8 100644 --- a/src/store/file-uploader/file-uploader-actions.ts +++ b/src/store/file-uploader/file-uploader-actions.ts @@ -24,6 +24,7 @@ export const fileUploaderActions = unionize({ SET_UPLOAD_PROGRESS: ofType<{ fileId: number, loaded: number, total: number, currentTime: number }>(), START_UPLOAD: ofType(), DELETE_UPLOAD_FILE: ofType(), + CANCEL_FILES_UPLOAD: ofType(), }); export type FileUploaderAction = UnionOf;