Skip to content

Commit

Permalink
docs(ComponentProps): remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac authored and binhth-1206 committed Sep 14, 2024
1 parent 9a7b6fb commit a2b1f55
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion docs/components/content/ComponentPropsField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
</FieldGroup>
</Collapsible>
<Collapsible v-else-if="(prop.schema?.kind === 'enum' || prop.schema?.kind === 'array') && Object.values(prop.schema?.schema)?.filter((schema: any) => schema.kind === 'array' && typeof schema.schema === 'object')?.length > 1">
{{ prop.schema }}
<FieldGroup v-for="schema in (Object.values(prop.schema.schema) as any[])" :key="schema.name">
<template v-for="subSchema in schema.schema" :key="subSchema.name">
<ComponentPropsField v-for="subProp in subSchema.schema" :key="(subProp as any).name" :prop="subProp" />
Expand Down

0 comments on commit a2b1f55

Please sign in to comment.