X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/5e8a5a1c42226e0dd3aceaf4825d870a3786c5d1..52a9925b1ab918d66f1508c948e0db8e99568ccf:/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 144f20be..34a43d89 100644 --- a/src/store/progress-indicator/progress-indicator-actions.ts +++ b/src/store/progress-indicator/progress-indicator-actions.ts @@ -5,10 +5,10 @@ import { unionize, ofType, UnionOf } from "~/common/unionize"; export const progressIndicatorActions = unionize({ - START: ofType(), - STOP: ofType(), - PERSIST_STOP: ofType(), - TOGGLE: ofType<{ id: string, working: boolean }>() + START_WORKING: ofType(), + STOP_WORKING: ofType(), + PERSIST_STOP_WORKING: ofType(), + TOGGLE_WORKING: ofType<{ id: string, working: boolean }>() }); export type ProgressIndicatorAction = UnionOf;