Skip to content

Commit 3a74b74

Browse files
committed
fix: broken schema talbes with long enums
1 parent c210ae4 commit 3a74b74

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/Fields/EnumValues.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ export class EnumValues extends React.PureComponent<EnumValuesProps> {
2222
{values.length === 1 ? l('enumSingleValue') : l('enum')}:
2323
</FieldLabel>
2424
{values.map((value, idx) => (
25-
<ExampleValue key={idx}>{JSON.stringify(value)}</ExampleValue>
25+
<>
26+
<ExampleValue key={idx}>{JSON.stringify(value)}</ExampleValue>{' '}
27+
</>
2628
))}
2729
</div>
2830
);

0 commit comments

Comments
 (0)