diff options
| author | bob <bcz@cs.brown.edu> | 2019-09-25 11:03:11 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-09-25 11:03:11 -0400 |
| commit | b57741dbed846313e1b9d0dad3b6c8add2566277 (patch) | |
| tree | 8922b014d31405fb6f3221cd4638f4104530b504 /src/client/views/collections/CollectionPDFView.tsx | |
| parent | 1a12483b52c27259f0f2762d4369a79e1397af9c (diff) | |
fixing up pdf rendering...
Diffstat (limited to 'src/client/views/collections/CollectionPDFView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionPDFView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionPDFView.tsx b/src/client/views/collections/CollectionPDFView.tsx index 8eda4d9ee..8f052db3c 100644 --- a/src/client/views/collections/CollectionPDFView.tsx +++ b/src/client/views/collections/CollectionPDFView.tsx @@ -1,4 +1,4 @@ -import { computed } from "mobx"; +import { computed, trace } from "mobx"; import { observer } from "mobx-react"; import { Id } from "../../../new_fields/FieldSymbols"; import { emptyFunction } from "../../../Utils"; @@ -46,6 +46,7 @@ export class CollectionPDFView extends React.Component<FieldViewProps> { } render() { + trace(); return ( <CollectionBaseView {...this.props} className={"collectionPdfView-cont"} onContextMenu={this.onContextMenu}> {this.subView} |
