aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DocumentView.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-06-21 22:46:24 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-06-21 22:46:24 -0400
commitc9a36bc25ed8bb8144dbef6c7cc2a09447867aa8 (patch)
tree402ebc7ee62fbab0635d044ef2d48d30185237cc /src/client/views/nodes/DocumentView.tsx
parent36afe2b166321e8181840ffc32dc7fe51e627539 (diff)
fixes to allow collections to be template fields
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r--src/client/views/nodes/DocumentView.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx
index 08f58dcd6..1a92d7152 100644
--- a/src/client/views/nodes/DocumentView.tsx
+++ b/src/client/views/nodes/DocumentView.tsx
@@ -536,6 +536,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu
@computed get nativeWidth() { return this.Document.nativeWidth || 0; }
@computed get nativeHeight() { return this.Document.nativeHeight || 0; }
@computed get contents() {
+ console.log("dv = " + this.props.Document.title + " " + this.props.DataDoc.title);
return (
<DocumentContentsView {...this.props} isSelected={this.isSelected} select={this.select} selectOnLoad={this.props.selectOnLoad} layoutKey={"layout"} />);
}