diff options
author | bob <bcz@cs.brown.edu> | 2019-05-16 12:28:31 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-05-16 12:28:31 -0400 |
commit | 25e5aa78f858e35eb0f8e7b49d528bdac6691513 (patch) | |
tree | 721079a03ef823b9bc371c0feba7b54697a2fc52 /src/client/views/nodes/DocumentView.tsx | |
parent | 5c7926ebe144644814043c43c0cdc2cf8866e4cd (diff) |
fixed MakeAlias to check if doc is prototype. fixed summary template to bottom/right + capture image when zoomed, fixed full screen to copy view data on delegate
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 260630216..cf8bcbb42 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -227,7 +227,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu } } fullScreenClicked = (e: React.MouseEvent): void => { - const doc = Doc.MakeDelegate(FieldValue(this.Document.proto)); + const doc = Doc.MakeCopy(this.props.Document, false); if (doc) { CollectionDockingView.Instance.OpenFullScreen(doc); } |