File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
packages/form/src/form/fields/object Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @sjsf/form " : patch
3+ ---
4+
5+ Fix reading ` title ` from ` undefined ` schema
Original file line number Diff line number Diff line change 116116 {#if schemaProperties !== undefined && value !== undefined }
117117 {#each schemaPropertiesOrder as property (property )}
118118 {@const isAdditional = isAdditionalProperty (schemaProperties , property )}
119- {@const propSchemaDefinition = schemaProperties [property ]! }
119+ {@const propSchemaDefinition = schemaProperties [property ] ?? false }
120120 {@const propSchema = typeof propSchemaDefinition === " boolean" ? {} : propSchemaDefinition }
121121 {@const propUiSchema =
122122 (isAdditional ? config .uiSchema .additionalProperties : config .uiSchema [property ]) as UiSchema ?? {}}
You can’t perform that action at this time.
0 commit comments