X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/3853f85e670483e3afa3a15101ea391cac2ba8ec..6faff5910b3e7bdaf47ab5ede7cf8094a1b4adb9:/src/store/progress-indicator/progress-indicator-actions.ts diff --git a/src/store/progress-indicator/progress-indicator-actions.ts b/src/store/progress-indicator/progress-indicator-actions.ts index 5f824e40..34a43d89 100644 --- a/src/store/progress-indicator/progress-indicator-actions.ts +++ b/src/store/progress-indicator/progress-indicator-actions.ts @@ -5,8 +5,10 @@ import { unionize, ofType, UnionOf } from "~/common/unionize"; export const progressIndicatorActions = unionize({ - START_SUBMIT: ofType<{ id: string }>(), - STOP_SUBMIT: ofType<{ id: string }>() + START_WORKING: ofType(), + STOP_WORKING: ofType(), + PERSIST_STOP_WORKING: ofType(), + TOGGLE_WORKING: ofType<{ id: string, working: boolean }>() }); -export type ProgressIndicatorAction = UnionOf; \ No newline at end of file +export type ProgressIndicatorAction = UnionOf;