We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c210ae4 commit 3a74b74Copy full SHA for 3a74b74
src/components/Fields/EnumValues.tsx
@@ -22,7 +22,9 @@ export class EnumValues extends React.PureComponent<EnumValuesProps> {
22
{values.length === 1 ? l('enumSingleValue') : l('enum')}:
23
</FieldLabel>
24
{values.map((value, idx) => (
25
- <ExampleValue key={idx}>{JSON.stringify(value)}</ExampleValue>
+ <>
26
+ <ExampleValue key={idx}>{JSON.stringify(value)}</ExampleValue>{' '}
27
+ </>
28
))}
29
</div>
30
);
0 commit comments