Fix alertNode redux schema bug by updating prop on rule correctly

pull/10616/head
Jared Scheib 2017-07-21 20:08:04 -07:00
parent 96d69e2501
commit f1d95ae1d5
1 changed files with 4 additions and 2 deletions

View File

@ -172,8 +172,10 @@ export default function rules(state = {}, action) {
return {
...state,
[ruleID]: {...state[ruleID]},
alertNodes: newAlertNodes,
[ruleID]: {
...state[ruleID],
alertNodes: newAlertNodes,
},
}
}