fix required fields in nested schema (#1932)

This commit is contained in:
Axel Baudot
2023-07-24 23:25:40 +02:00
committed by GitHub
parent ac6c0e033c
commit 33bc32c52f
@@ -62,7 +62,8 @@
items: schema.items,
contentEncoding: schema.contentEncoding,
format: schema.format,
properties: schema.schema?.properties
properties: schema.schema?.properties,
required: schema.schema?.required
}
}
function handleAddOrEditArgument(modalProperty: ModalSchemaProperty): void {