aboutsummaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-03-18 00:49:16 -0400
committerTyler Schicke <tyler_schicke@brown.edu>2019-03-18 00:49:16 -0400
commitd4e5c26021aadfcdfefee105493dc6e55d10fe6c (patch)
treea7c9c8a19d125531517ee7628bfa4d5506f7ad1d /src/debug
parent0476ae26662ac8a2f4232b0fb5f7b13bf7c425d4 (diff)
Debugger changes
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/Viewer.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/debug/Viewer.tsx b/src/debug/Viewer.tsx
index e6ad0f540..7fdd77bf3 100644
--- a/src/debug/Viewer.tsx
+++ b/src/debug/Viewer.tsx
@@ -143,8 +143,7 @@ class DebugViewer extends React.Component<{ fieldId: string }> {
} else if (this.error) {
content = <span>Field <b>{this.props.fieldId}</b> not found <button onClick={() => this.update()}>Refresh</button></span>
} else {
- content = <>Field loading</>
- console.log(this.props.fieldId);
+ content = <span>Field loading: {this.props.fieldId}</span>
}
return content;
}