diff --git a/client/src/components/DynamicJsonForm.tsx b/client/src/components/DynamicJsonForm.tsx index c1a85d5..66a36fd 100644 --- a/client/src/components/DynamicJsonForm.tsx +++ b/client/src/components/DynamicJsonForm.tsx @@ -132,8 +132,19 @@ const DynamicJsonForm = ({ const arrayValue = Array.isArray(currentValue) ? currentValue : []; if (!propSchema.items) return null; return ( -
{propSchema.description}
+ )} + + {propSchema.items?.description && ( ++ Items: {propSchema.items.description} +
+ )} + +