mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 11:26:37 +03:00
fix: clean up field values display (#855)
This commit is contained in:
parent
5dd5d6d704
commit
5c915906c8
|
@ -17,9 +17,11 @@ export class EnumValues extends React.PureComponent<EnumValuesProps> {
|
|||
<div>
|
||||
<FieldLabel>
|
||||
{type === 'array' ? 'Items' : ''} {values.length === 1 ? 'Value' : 'Enum'}:
|
||||
</FieldLabel>
|
||||
</FieldLabel>{' '}
|
||||
{values.map((value, idx) => (
|
||||
<ExampleValue key={idx}>{JSON.stringify(value)} </ExampleValue>
|
||||
<ExampleValue key={idx}>
|
||||
{JSON.stringify(value)}
|
||||
</ExampleValue>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -14,7 +14,9 @@ export class FieldDetail extends React.PureComponent<FieldDetailProps> {
|
|||
return (
|
||||
<div>
|
||||
<FieldLabel> {this.props.label} </FieldLabel>{' '}
|
||||
<ExampleValue> {JSON.stringify(this.props.value)} </ExampleValue>
|
||||
<ExampleValue>
|
||||
{JSON.stringify(this.props.value)}
|
||||
</ExampleValue>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user