Make Radio Create and Edit forms consistent

This commit is contained in:
Deluan 2023-01-15 15:43:46 -05:00
parent a8478ca74c
commit d319b66ff3

View file

@ -50,8 +50,13 @@ const RadioCreate = (props) => {
<Create title={<Title subTitle={title} />} {...props}>
<SimpleForm save={save} variant={'outlined'}>
<TextInput source="name" validate={[required()]} />
<TextInput type="url" source="streamUrl" validate={[required()]} />
<TextInput type="url" source="homepageUrl" />
<TextInput
type="url"
source="streamUrl"
fullWidth
validate={[required()]}
/>
<TextInput type="url" source="homepageUrl" fullWidth />
</SimpleForm>
</Create>
)