diff options
| author | bob <bcz@cs.brown.edu> | 2020-03-06 13:06:34 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-03-06 13:06:34 -0500 |
| commit | 6a2b210f32cb70646a5d9097e667c0d199057901 (patch) | |
| tree | ad7349e71dd3ae25717d744b29cd53800cf63704 /src/client/views/nodes/DocumentContentsView.tsx | |
| parent | 288e4d24b61d281819b7f0b5bb697edbcc9ed173 (diff) | |
fixes to documentBox to work with templates. changed tree view to select documents. fixed panning in freeform view to account for scale correctly. increased max renderdepth to 12
Diffstat (limited to 'src/client/views/nodes/DocumentContentsView.tsx')
| -rw-r--r-- | src/client/views/nodes/DocumentContentsView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentContentsView.tsx b/src/client/views/nodes/DocumentContentsView.tsx index dcb6d4a31..f121ba3e0 100644 --- a/src/client/views/nodes/DocumentContentsView.tsx +++ b/src/client/views/nodes/DocumentContentsView.tsx @@ -91,7 +91,7 @@ export class DocumentContentsView extends React.Component<DocumentViewProps & { render() { TraceMobx(); - return (this.props.renderDepth > 7 || !this.layout || !this.layoutDoc) ? (null) : + return (this.props.renderDepth > 12 || !this.layout || !this.layoutDoc) ? (null) : <ObserverJsxParser blacklistedAttrs={[]} components={{ |
