X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1703f15adf9e3875ff0c78ce78117a87b70ca05c..3fe29b3b329b7d61fe8740c02d6f84454d9c310b:/src/store/process-panel/process-panel-actions.ts diff --git a/src/store/process-panel/process-panel-actions.ts b/src/store/process-panel/process-panel-actions.ts index 85a7314d2e..832d4d5118 100644 --- a/src/store/process-panel/process-panel-actions.ts +++ b/src/store/process-panel/process-panel-actions.ts @@ -8,7 +8,7 @@ import { Dispatch } from 'redux'; import { ProcessStatus } from '~/store/processes/process'; export const procesPanelActions = unionize({ - INIT_PROCESS_PANEL_FILTERS: ofType(), + SET_PROCESS_PANEL_FILTERS: ofType(), TOGGLE_PROCESS_PANEL_FILTER: ofType(), }); @@ -22,7 +22,7 @@ export const loadProcessPanel = (uuid: string) => dispatch(initProcessPanelFilters); }; -export const initProcessPanelFilters = procesPanelActions.INIT_PROCESS_PANEL_FILTERS([ +export const initProcessPanelFilters = procesPanelActions.SET_PROCESS_PANEL_FILTERS([ ProcessStatus.QUEUED, ProcessStatus.COMPLETED, ProcessStatus.FAILED,