aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf
diff options
context:
space:
mode:
authoryipstanley <stanley_yip@brown.edu>2019-06-12 14:41:57 -0400
committeryipstanley <stanley_yip@brown.edu>2019-06-12 14:41:57 -0400
commit188033d3b013326b3233cd9ce33793e7561e03a6 (patch)
treead5bd29dd114986c59697526b5d3202ed7be7c22 /src/client/views/pdf
parent9ec4a529dc886acca8f147cfe913e60f938f3bda (diff)
parenta638c12cde39a3ea5193a8038f72a55d706d9af8 (diff)
nice!
Diffstat (limited to 'src/client/views/pdf')
-rw-r--r--src/client/views/pdf/Page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/pdf/Page.tsx b/src/client/views/pdf/Page.tsx
index 908804605..998ac25fd 100644
--- a/src/client/views/pdf/Page.tsx
+++ b/src/client/views/pdf/Page.tsx
@@ -161,7 +161,7 @@ export default class Page extends React.Component<IPageProps> {
}
let annoDoc = new Doc();
annoDoc.annotations = new List<Doc>(annoDocs);
- DocUtils.MakeLink(annoDoc, targetDoc, `Annotation from ${StrCast(this.props.parent.Document.title)}`, "", StrCast(this.props.parent.Document.title));
+ DocUtils.MakeLink(annoDoc, targetDoc, undefined, `Annotation from ${StrCast(this.props.parent.Document.title)}`, "", StrCast(this.props.parent.Document.title));
this._currentAnnotations = [];
return annoDoc;
}