diff options
| author | bobzel <zzzman@gmail.com> | 2024-08-29 13:59:00 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-08-29 13:59:00 -0400 |
| commit | b1692a7435ae9698eff618bef0e370fe3eb89572 (patch) | |
| tree | 20664940b2774a4b0fffdecaafdd40bfd08c4251 /src/client/views/pdf/Annotation.tsx | |
| parent | 0ac79ba6a7ab19b4aafbc11dac9bab4781d4bd40 (diff) | |
from last cleanup
Diffstat (limited to 'src/client/views/pdf/Annotation.tsx')
| -rw-r--r-- | src/client/views/pdf/Annotation.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/pdf/Annotation.tsx b/src/client/views/pdf/Annotation.tsx index 3bd42873c..1891cfd4c 100644 --- a/src/client/views/pdf/Annotation.tsx +++ b/src/client/views/pdf/Annotation.tsx @@ -13,6 +13,7 @@ import { FieldViewProps } from '../nodes/FieldView'; import { OpenWhere } from '../nodes/OpenWhere'; import { AnchorMenu } from './AnchorMenu'; import './Annotation.scss'; +import { Property } from 'csstype'; interface IRegionAnnotationProps { x: number; @@ -45,7 +46,7 @@ interface IAnnotationProps extends FieldViewProps { annoDoc: Doc; containerDataDoc: Doc; fieldKey: string; - pointerEvents?: () => Opt<string>; + pointerEvents?: () => Opt<Property.PointerEvents>; } @observer export class Annotation extends ObservableReactComponent<IAnnotationProps> { |
