editable schema nit

This commit is contained in:
Ruben Fiszel
2025-03-13 15:18:57 +01:00
committed by GitHub
parent acceb37e20
commit 5694a3adf5
@@ -25,7 +25,7 @@
let schemaFormDrawer: Drawer | undefined = undefined
let editableSchemaForm: EditableSchemaForm | undefined = undefined
$: items = ((schema?.order ?? Object.keys(schema.properties ?? {}))?.map((item, index) => {
$: items = ((schema?.order ?? Object.keys(schema?.properties ?? {}))?.map((item, index) => {
return { value: item, id: item }
}) ?? []) as Array<{
value: string