aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/Annotation.tsx
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-06-30 16:04:52 -0400
committerTyler Schicke <tyler_schicke@brown.edu>2019-06-30 16:04:52 -0400
commit13fcbc4c500fec36e69cac4fc3c0ca6822322809 (patch)
treec12447b98dd0511b43ee3f60222fcede4d310816 /src/client/views/pdf/Annotation.tsx
parent9dd5db438c80da77b6d791787263425c0d378933 (diff)
Fixed errors and linter warnings
Diffstat (limited to 'src/client/views/pdf/Annotation.tsx')
-rw-r--r--src/client/views/pdf/Annotation.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/pdf/Annotation.tsx b/src/client/views/pdf/Annotation.tsx
index 74f4be51a..73fca229b 100644
--- a/src/client/views/pdf/Annotation.tsx
+++ b/src/client/views/pdf/Annotation.tsx
@@ -10,9 +10,9 @@ import PDFMenu from "./PDFMenu";
import { DocumentManager } from "../../util/DocumentManager";
interface IAnnotationProps {
- anno: Doc,
- index: number,
- parent: Viewer
+ anno: Doc;
+ index: number;
+ parent: Viewer;
}
export default class Annotation extends React.Component<IAnnotationProps> {