I have a state
of an array like this:
constructor(props){
super(props)
this.state={
test_steps: []
}
}
and it holds the following properties:
test_steps: [
{
description: "Test desc"
expected_results: "Test exp. results"
other_info: "test other info"
status: true
step_number: "1"
_id: {$oid: "1234565894"}
}
]
If I wanted to update only **other_info**
property on this state, how will I achieve that?