aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/PDFViewer.tsx
diff options
context:
space:
mode:
authoryipstanley <stanley_yip@brown.edu>2019-07-12 13:15:48 -0400
committeryipstanley <stanley_yip@brown.edu>2019-07-12 13:15:48 -0400
commit2dfc3abde7a353005e0f211adcb1ca993ce6cba1 (patch)
treec6d453b592efdc19c165153dfd92726fa5464179 /src/client/views/pdf/PDFViewer.tsx
parentcae397d6bba9253295d0627c3839ec33e69946c5 (diff)
parentbde549beec0b9644ff0e39585989b1a6795750eb (diff)
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/views/pdf/PDFViewer.tsx')
-rw-r--r--src/client/views/pdf/PDFViewer.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/pdf/PDFViewer.tsx b/src/client/views/pdf/PDFViewer.tsx
index af8b8d794..c0d8551cd 100644
--- a/src/client/views/pdf/PDFViewer.tsx
+++ b/src/client/views/pdf/PDFViewer.tsx
@@ -126,7 +126,7 @@ export class Viewer extends React.Component<IViewerProps> {
this._annotationReactionDisposer = reaction(
() => {
- return this.props.parent && this.props.parent.fieldExtensionDoc && DocListCast(this.props.parent.fieldExtensionDoc.annotations)
+ return this.props.parent && this.props.parent.fieldExtensionDoc && DocListCast(this.props.parent.fieldExtensionDoc.annotations);
},
(annotations: Doc[]) => {
annotations && annotations.length && this.renderAnnotations(annotations, true);
@@ -236,7 +236,7 @@ export class Viewer extends React.Component<IViewerProps> {
makeAnnotationDocument = (sourceDoc: Doc | undefined, s: number, color: string): Doc => {
let annoDocs: Doc[] = [];
- let mainAnnoDoc = Docs.CreateInstance(new Doc(), "", {});
+ let mainAnnoDoc = Docs.Create.InstanceFromProto(new Doc(), "", {});
mainAnnoDoc.title = "Annotation on " + StrCast(this.props.parent.Document.title);
mainAnnoDoc.pdfDoc = this.props.parent.Document;