Handle null references when selecting empty in the schema type in the panel

This commit is contained in:
Adria Navarro 2024-04-30 10:26:35 +01:00
parent 9babae5b44
commit 54e2609f76
1 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,6 @@
name="field"
headings
options={SchemaTypeOptionsExpanded}
compare={(option, value) => option.type === value.type}
compare={(option, value) => option.type === value?.type}
/>
{/key}