X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f5c0cb11102a006cda59711f29458b7569b9a21f..c421cba83fb4d6ca6dd11ada099c7b8c1da55d27:/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 }; },