From 490678d7b4d79a7ddeff5374fb1961f6ff88bddf Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Sun, 13 Jan 2019 15:26:32 +0100 Subject: [PATCH] Fix sort topic function Fixes #4 --- app/src/reducers/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/reducers/index.ts b/app/src/reducers/index.ts index 1523195..f93a1eb 100644 --- a/app/src/reducers/index.ts +++ b/app/src/reducers/index.ts @@ -93,7 +93,7 @@ const reducer: Reducer = (state, action) => } return { ...state, - settings: { ...state.settings, autoExpandLimit: state.settings.autoExpandLimit }, + settings: { ...state.settings, nodeOrder: action.nodeOrder }, } default: return state