(未解決) react@15.6.2, material-ui@1.0.0-beta.12 の select で warning.js?8a56:35 Warning: Failed prop type: Invalid prop `value` supplied to `SelectInput`. エラー

動作はするけどエラーが出る。 dist だと出なくてさらに心配..

  <FormControl
    className={props.classes.formControl}>
    <InputLabel htmlFor='testname'></InputLabel>
    <Select
      value={props.testname}
      onChange={e => props.onChangeValue('testname')(e.target.value)}
      input={<Input id='testname'/>}
    >
      <MenuItem value={true}>True</MenuItem>
      <MenuItem value={false}>False</MenuItem>
    </Select>
  </FormControl>
warning.js?8a56:35 Warning: Failed prop type: Invalid prop `value` supplied to `SelectInput`.