Skip to content

Commit

Permalink
Merge pull request #248 from AntonNazarenko/fix/strategy
Browse files Browse the repository at this point in the history
fix:strategy content now stores in "content" field
  • Loading branch information
prdn authored Dec 3, 2020
2 parents 2ce2df6 + c5cd021 commit 3a12aaa
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 3a12aaa

Please sign in to comment.