The onChange on a select multiple field does not properly select the proper value. Let's say you had a field and you were using a SelectMultiple component. Selecting a choice in the field will not update the state in redux-form.
<Field name="distroLists" label="Distribution Lists" component=
{SelectFieldMultiple} type="text"></Field>
Where the Select Field Multiple component is
const onChange = this.props.onChange;
<select ref={name} value={value} onChange={onChange} multiple>
{ emptyValue }
{(optionList) && optionList.map(current => (
<option key={current.value} value={current.value}>{current.name}</option>))
}
</select>
Does anyone have any idea?