Select第一个选项Select在admin-on-rest中默认输入

Select the first option of SelectInput by default in admin-on-rest

我有一个 SelectInput 有两个选择:

<SelectInput source="existing_user" choices={[
        { id: 'existing', name: 'Existing'},
        { id: 'new', name: 'New User' },
  ]} validate={required} />

我还有一个 DependInput 组件,它根据 existing_user 的值呈现其他字段。 我希望默认选择第一个选项 ('existing')。但是,当表单加载时 SelectInput 字段始终为空,因此没有其他字段可见:

我尝试通过 options 将基础 SelectFieldvalue 属性 设置为 'existing',但我无法编辑 SelectInput(点击第二个选项什么都不做)。

我可能遗漏了一些简单的东西,因为这应该是基本的,但我在 documentation 中找不到任何有用的东西。

SelectInput 或包含它的表单上使用 defaultValue 应该可以解决问题: