diff options
author | bobzel <zzzman@gmail.com> | 2023-07-05 13:03:28 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-07-05 13:03:28 -0400 |
commit | 21a2794dae9f9c412c745de06e8fb3163c7ed543 (patch) | |
tree | 2cccffa7621be21aa6f0b496a27caa9d6835eb0d /src | |
parent | 638a3ce3bcd4aa7287544be82d8d9d07ee963600 (diff) |
fixed anno dropping on collections
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/CollectionSubView.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionSubView.tsx b/src/client/views/collections/CollectionSubView.tsx index 78789247f..c189ef126 100644 --- a/src/client/views/collections/CollectionSubView.tsx +++ b/src/client/views/collections/CollectionSubView.tsx @@ -230,7 +230,6 @@ export function CollectionSubView<X>(moreProps?: X) { added === true && e.stopPropagation(); return added ? true : false; } else if (de.complete.annoDragData) { - e.stopPropagation(); const dropCreator = de.complete.annoDragData.dropDocCreator; de.complete.annoDragData.dropDocCreator = () => { const dropped = dropCreator(this.props.isAnnotationOverlay ? this.rootDoc : undefined); |