From 33bc32c52fd38246ef075a1f0cbe6c66da801d98 Mon Sep 17 00:00:00 2001 From: Axel Baudot <74733630+axelbdt@users.noreply.github.com> Date: Mon, 24 Jul 2023 17:25:40 -0400 Subject: [PATCH] fix required fields in nested schema (#1932) --- frontend/src/lib/components/SchemaEditor.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/lib/components/SchemaEditor.svelte b/frontend/src/lib/components/SchemaEditor.svelte index 7d507f2690..d8cec1bd43 100644 --- a/frontend/src/lib/components/SchemaEditor.svelte +++ b/frontend/src/lib/components/SchemaEditor.svelte @@ -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 {