X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/38d27e9783f7f760cee84cc225e86144069848c4..780b538596d1d66bab3e14b7399c04cc92a4dbe0:/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;