Fix test passing
[arvados-workbench2.git] / src / store / process-panel / process-panel-reducer.ts
index 487b092b123a19f6e0cb8264138dc3fdcfda25e7..3e31f56446171aa92dafbfbb58a5c54158f6b753 100644 (file)
@@ -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 };
         },