Fix alertNode redux schema bug by updating prop on rule correctly
parent
96d69e2501
commit
f1d95ae1d5
|
@ -172,8 +172,10 @@ export default function rules(state = {}, action) {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
[ruleID]: {...state[ruleID]},
|
[ruleID]: {
|
||||||
|
...state[ruleID],
|
||||||
alertNodes: newAlertNodes,
|
alertNodes: newAlertNodes,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue