The React way to set which option is selected for a select box, is to set a special value prop on the itself, corresponding to the <
value
Try this one:
dropdownChanged = (event) => { let obj = JSON.parse(event.target.value); this.setState( { key: obj.key, selectedName: obj.name, type: obj.type }); } All Projetcs and Spaces