X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5e8a5a1c42226e0dd3aceaf4825d870a3786c5d1..78e3c7b8d6a4fe84989182745267d1af468dfa7f:/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 144f20be50..34a43d8928 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;