diff options
-rw-r--r-- | src/debug/Viewer.tsx | 3 |
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; } |