aboutsummaryrefslogtreecommitdiff
path: root/src/debug/Viewer.tsx
diff options
context:
space:
mode:
authorMonika Hedman <monika_hedman@brown.edu>2019-02-25 18:58:53 -0500
committerMonika Hedman <monika_hedman@brown.edu>2019-02-25 18:58:53 -0500
commit293532a50a5670d2cd04fed65df77173e2dbad67 (patch)
tree7a437e6b39cc4602cecee8503125412c4a6849b2 /src/debug/Viewer.tsx
parent921941e3f9bc4981f92fbf0fe0cec948cd49c220 (diff)
parent292ff1a8d75f8b15f9388d2c577e09a13836d5dc (diff)
merging
Diffstat (limited to 'src/debug/Viewer.tsx')
-rw-r--r--src/debug/Viewer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/Viewer.tsx b/src/debug/Viewer.tsx
index aff77fca3..780e9f8f2 100644
--- a/src/debug/Viewer.tsx
+++ b/src/debug/Viewer.tsx
@@ -17,7 +17,7 @@ configure({
@observer
class FieldViewer extends React.Component<{ field: BasicField<any> }> {
render() {
- return <span>{this.props.field.Data} ({this.props.field.Id})</span>;
+ return <span>{JSON.stringify(this.props.field.Data)} ({this.props.field.Id})</span>;
}
}