diff --git a/frontend/src/lib/components/SchemaEditor.svelte b/frontend/src/lib/components/SchemaEditor.svelte index a6a186d951..7c00971798 100644 --- a/frontend/src/lib/components/SchemaEditor.svelte +++ b/frontend/src/lib/components/SchemaEditor.svelte @@ -61,7 +61,8 @@ enum: schema.enum_, items: schema.items, contentEncoding: schema.contentEncoding, - format: schema.format + format: schema.format, + properties: schema.schema?.properties } } function handleAddOrEditArgument(modalProperty: ModalSchemaProperty): void { diff --git a/frontend/src/lib/components/SchemaModal.svelte b/frontend/src/lib/components/SchemaModal.svelte index 99b77cae1b..23663d1ea8 100644 --- a/frontend/src/lib/components/SchemaModal.svelte +++ b/frontend/src/lib/components/SchemaModal.svelte @@ -1,5 +1,9 @@