Change default table view to be displayed only after data fetch
[arvados-workbench2.git] / src / store / progress-indicator / progress-indicator-actions.ts
index 3712e41b6899578d1b41e8151620c82eba83b831..144f20be50f9ce80cede69915ce3eb32c4d9ec47 100644 (file)
@@ -7,6 +7,7 @@ import { unionize, ofType, UnionOf } from "~/common/unionize";
 export const progressIndicatorActions = unionize({
     START: ofType<string>(),
     STOP: ofType<string>(),
+    PERSIST_STOP: ofType<string>(),
     TOGGLE: ofType<{ id: string, working: boolean }>()
 });