diff --git a/frontend/src/lib/components/SchemaEditor.svelte b/frontend/src/lib/components/SchemaEditor.svelte
index face2f7bfd..47931e8e19 100644
--- a/frontend/src/lib/components/SchemaEditor.svelte
+++ b/frontend/src/lib/components/SchemaEditor.svelte
@@ -188,8 +188,12 @@
{property.description} |
- {JSON.stringify(property.default) ?? ''} |
- {schema.required.includes(name) ? 'Required' : 'Optional'} |
+ {property.default ? JSON.stringify(property.default) : ''} |
+ {#if schema.required.includes(name)}
+ *
+ {/if} |
|