Review comments

Signed-off-by: Oliver Sand <oliver.sand@sda-se.com>
This commit is contained in:
Oliver Sand
2021-08-17 23:28:24 +02:00
parent 3281b75ea2
commit 9f9b808f96
2 changed files with 2 additions and 2 deletions
@@ -59,7 +59,7 @@ export const EntityPicker = ({
error={rawErrors?.length > 0 && !formData}
>
<Autocomplete
id={idSchema && idSchema.$id}
id={idSchema?.$id}
value={(formData as string) || ''}
loading={loading}
onChange={onSelect}
@@ -28,7 +28,7 @@ export const TextValuePicker = ({
placeholder,
}: FieldProps<string>) => (
<TextField
id={idSchema && idSchema.$id}
id={idSchema?.$id}
label={title}
placeholder={placeholder}
helperText={description}