From d480532c1675c7479a277a6c88eaccbf0841fb1b Mon Sep 17 00:00:00 2001 From: ze0s <43699394+zze0s@users.noreply.github.com> Date: Wed, 3 May 2023 00:10:43 +0200 Subject: [PATCH] fix(filters): list show status all (#904) fix(filters): lists show status all --- web/src/screens/filters/list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/screens/filters/list.tsx b/web/src/screens/filters/list.tsx index cc57f51..1cdc217 100644 --- a/web/src/screens/filters/list.tsx +++ b/web/src/screens/filters/list.tsx @@ -71,7 +71,7 @@ const FilterListReducer = (state: FilterListState, action: Actions): FilterListS case ActionType.STATUS_CHANGE: return { ...state, status: action.payload }; case ActionType.STATUS_RESET: - return { ...state }; + return { ...state, status: "" }; default: throw new Error(`Unhandled action type: ${action}`); }