mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
fix(filters): list show status all (#904)
fix(filters): lists show status all
This commit is contained in:
parent
1ca2677f9f
commit
d480532c16
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ const FilterListReducer = (state: FilterListState, action: Actions): FilterListS
|
||||||
case ActionType.STATUS_CHANGE:
|
case ActionType.STATUS_CHANGE:
|
||||||
return { ...state, status: action.payload };
|
return { ...state, status: action.payload };
|
||||||
case ActionType.STATUS_RESET:
|
case ActionType.STATUS_RESET:
|
||||||
return { ...state };
|
return { ...state, status: "" };
|
||||||
default:
|
default:
|
||||||
throw new Error(`Unhandled action type: ${action}`);
|
throw new Error(`Unhandled action type: ${action}`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue