Skip to content

Commit

Permalink
fix:strategy content now stores in "content" field
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Nazarenko committed Dec 3, 2020
1 parent 2ce2df6 commit c5cd021
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/redux/reducers/ui/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,10 @@ function reducer(state = getInitialState(), action = {}) {
const { content = {} } = payload
return {
...state,
...content,
content: {
...content,
...state.content,
},
}
}
case types.UPDATE_STRATEGY_ID: {
Expand Down

0 comments on commit c5cd021

Please sign in to comment.