diff --git a/src/mui/input/SelectArrayInput.js b/src/mui/input/SelectArrayInput.js index f11f2e2d6c6..d5c4b73f51e 100644 --- a/src/mui/input/SelectArrayInput.js +++ b/src/mui/input/SelectArrayInput.js @@ -56,7 +56,7 @@ export class SelectArrayInput extends Component { componentWillMount = () => { this.setState({ - values: this.resolveValues(this.props.input.value, this.props.choices), + values: this.resolveValues(this.props.input.value || [], this.props.choices), }); }