Skip to content

Commit

Permalink
fix: Default boolean property value not rendered #1779 (#1781)
Browse files Browse the repository at this point in the history
  • Loading branch information
zalesky authored Oct 27, 2021
1 parent ebbd256 commit 734080c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Fields/EnumValues.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class EnumValues extends React.PureComponent<EnumValuesProps, EnumValuesS
{values.length === 1 ? l('enumSingleValue') : l('enum')}:
</FieldLabel>{' '}
{displayedItems.map((value, idx) => {
const exampleValue = enumSkipQuotes ? value : JSON.stringify(value);
const exampleValue = enumSkipQuotes ? String(value) : JSON.stringify(value);
return (
<React.Fragment key={idx}>
<ExampleValue>{exampleValue}</ExampleValue>{' '}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Fields/FieldDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class FieldDetail extends React.PureComponent<FieldDetailProps> {
return null;
}

const value = this.props.raw ? this.props.value : JSON.stringify(this.props.value);
const value = this.props.raw ? String(this.props.value) : JSON.stringify(this.props.value);

return (
<div>
Expand Down

0 comments on commit 734080c

Please sign in to comment.