From 552c70ec6f4281c251c1fb7244c0ffac86377907 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 20 Feb 2023 09:58:11 -0800 Subject: [PATCH] Fixed: Artist select not working correctly after stopping/starting or changing sort order (cherry picked from commit bf62d4f921f17a25c2ed84c6d3ff9f73d8e459e2) --- frontend/src/App/SelectContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App/SelectContext.tsx b/frontend/src/App/SelectContext.tsx index 63c2d3cd3..6980129c1 100644 --- a/frontend/src/App/SelectContext.tsx +++ b/frontend/src/App/SelectContext.tsx @@ -116,7 +116,7 @@ function selectReducer(state: SelectState, action: SelectAction): SelectState { ...state, ...areAllSelected(nextSelectedState), selectedState: nextSelectedState, - items, + items: action.items, }; } default: {