From 84448ff411f473c7b38849ab1004af9aba63f711 Mon Sep 17 00:00:00 2001 From: Chris Read Date: Mon, 9 Nov 2020 14:23:32 +1000 Subject: [PATCH] Only show the title block if the title tag exists --- src/components/Schema/ArraySchema.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Schema/ArraySchema.tsx b/src/components/Schema/ArraySchema.tsx index 2d33cabc..aa57fd83 100644 --- a/src/components/Schema/ArraySchema.tsx +++ b/src/components/Schema/ArraySchema.tsx @@ -24,7 +24,7 @@ export class ArraySchema extends React.PureComponent { return (
Array ({minMaxItems}) - {itemsSchema.schema.title} + {itemsSchema.schema.title && {itemsSchema.schema.title} }