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 b1e3d61 commit 4cb47b7Copy full SHA for 4cb47b7
src/components/BrowserCell/BrowserCell.react.js
@@ -41,7 +41,7 @@ let BrowserCell = ({ type, value, hidden, width, current, onSelect, readonly, on
41
content = value ? 'True' : 'False';
42
} else if (type === 'Array') {
43
content = JSON.stringify(value.map(val => val instanceof Parse.Object ? val.toPointer() : val))
44
- } else if (type === 'Object') {
+ } else if (type === 'Object' || type === 'Bytes') {
45
content = JSON.stringify(value);
46
} else if (type === 'File') {
47
if (value.url()) {
0 commit comments