X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/1703f15adf9e3875ff0c78ce78117a87b70ca05c..47f421fa743e2b4b09d4f0fbfbead00545e327d4:/src/store/process-panel/process-panel-reducer.ts diff --git a/src/store/process-panel/process-panel-reducer.ts b/src/store/process-panel/process-panel-reducer.ts index 487b092b..3e31f564 100644 --- a/src/store/process-panel/process-panel-reducer.ts +++ b/src/store/process-panel/process-panel-reducer.ts @@ -11,7 +11,7 @@ const initialState: ProcessPanel = { export const processPanelReducer = (state = initialState, action: ProcessPanelAction): ProcessPanel => procesPanelActions.match(action, { - INIT_PROCESS_PANEL_FILTERS: statuses => { + SET_PROCESS_PANEL_FILTERS: statuses => { const filters = statuses.reduce((filters, status) => ({ ...filters, [status]: true }), {}); return { filters }; },