X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/12fbb73269d10424383cdbd712201498cc8d013a..52a9925b1ab918d66f1508c948e0db8e99568ccf:/src/store/progress-indicator/progress-indicator-actions.ts?ds=sidebyside 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;