aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/PDFViewer.tsx
diff options
context:
space:
mode:
authoryipstanley <stanley_yip@brown.edu>2019-06-12 15:09:11 -0400
committeryipstanley <stanley_yip@brown.edu>2019-06-12 15:09:11 -0400
commit2cec2be7f16cf8ef656def60659e5555b75f2ce7 (patch)
tree74b5876922aee9b9baf33a47fabe8256023b3e9c /src/client/views/pdf/PDFViewer.tsx
parent188033d3b013326b3233cd9ce33793e7561e03a6 (diff)
oops
Diffstat (limited to 'src/client/views/pdf/PDFViewer.tsx')
-rw-r--r--src/client/views/pdf/PDFViewer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/pdf/PDFViewer.tsx b/src/client/views/pdf/PDFViewer.tsx
index bfd0e036f..deacdd623 100644
--- a/src/client/views/pdf/PDFViewer.tsx
+++ b/src/client/views/pdf/PDFViewer.tsx
@@ -171,7 +171,7 @@ class Viewer extends React.Component<IViewerProps> {
let annoDoc = new Doc();
annoDoc.annotations = new List<Doc>(annoDocs);
- DocUtils.MakeLink(sourceDoc, annoDoc, `Annotation from ${StrCast(this.props.parent.Document.title)}`, "", StrCast(this.props.parent.Document.title));
+ DocUtils.MakeLink(sourceDoc, annoDoc, undefined, `Annotation from ${StrCast(this.props.parent.Document.title)}`, "", StrCast(this.props.parent.Document.title));
this._savedAnnotations.clear();
return annoDoc;
}