diff options
author | bobzel <zzzman@gmail.com> | 2021-09-13 17:01:54 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-09-13 17:01:54 -0400 |
commit | bab473b8c5916404c49f46a639bc660aa7ee2130 (patch) | |
tree | 27d8f7fcc7dc98b41ce0770b6e2c2f070fe99a39 /src/client/views/DocComponent.tsx | |
parent | 8c5fd1eb3c1ffb5bc17f5225a75f9dd2db40e460 (diff) |
fixed clicking on link drag button to create doc in sidebar for RTF documents.
Diffstat (limited to 'src/client/views/DocComponent.tsx')
-rw-r--r-- | src/client/views/DocComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocComponent.tsx b/src/client/views/DocComponent.tsx index cb36f4270..32c351bf5 100644 --- a/src/client/views/DocComponent.tsx +++ b/src/client/views/DocComponent.tsx @@ -176,7 +176,7 @@ export function ViewBoxAnnotatableComponent<P extends ViewBoxAnnotatableProps, T return false; } @action.bound - addDocument(doc: Doc | Doc[], annotationKey?: string): boolean { + addDocument = (doc: Doc | Doc[], annotationKey?: string): boolean => { const docs = doc instanceof Doc ? [doc] : doc; if (this.props.filterAddDocument?.(docs) === false || docs.find(doc => Doc.AreProtosEqual(doc, this.props.Document) && Doc.LayoutField(doc) === Doc.LayoutField(this.props.Document))) { |