react-json-view
react-json-view copied to clipboard
displayDataTypes and displayObjectSize is always true
I am trying to change displayDataTypes and displayObjectSize to false but the these information isalways shown
ReactJson displayDataTypes=false displayObjectSize=false src={jsonF} />
ReactJson displayDataTypes={false} displayObjectSize={false} src={jsonF} />

same error too
same error. It works for me if I use it like: displayDataTypes={false}
This works for me:
<ReactJson
src={response.results}
name={null}
iconStyle="square"
displayDataTypes={false}
displayObjectSize={false}
/>