Skip to content

Commit

Permalink
Fix column order reducer
Browse files Browse the repository at this point in the history
  • Loading branch information
inukshuk committed Feb 16, 2018
1 parent 4e6f30c commit fca1c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reducers/nav.js
Expand Up @@ -157,7 +157,7 @@ module.exports = {
return {
...state,
columns: state.columns.reduce((cols, c) =>
((cols[order[c.id]] = c), c), [])
((cols[order[c.id]] = c), cols), [])
}
}

Expand Down

0 comments on commit fca1c76

Please sign in to comment.