diff options
author | mehekj <mehek.jethani@gmail.com> | 2021-07-19 16:21:33 -0400 |
---|---|---|
committer | mehekj <mehek.jethani@gmail.com> | 2021-07-19 16:21:33 -0400 |
commit | 618062ac7c2349dbc25cc69d8683d6e29ed947e8 (patch) | |
tree | 37079834f2becda983d6fe3053ec80207873a94f /src/client/views/collections/CollectionTreeView.tsx | |
parent | dced40cd975732c2c98f230a6c750af54ffdabd4 (diff) | |
parent | 212d49772c1c2aa3d0a9382ef144dc3037faa8c2 (diff) |
Merge branch 'master' into temporalmedia-mehek
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionTreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx index 82c8a9114..3eece0086 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -154,7 +154,7 @@ export class CollectionTreeView extends CollectionSubView<Document, Partial<coll !existingOnClick && ContextMenu.Instance.addItem({ description: "OnClick...", noexpand: true, subitems: onClicks, icon: "mouse-pointer" }); } } - onTreeDrop = (e: React.DragEvent) => this.onExternalDrop(e, {}); + onTreeDrop = (e: React.DragEvent, addDocs?: (docs: Doc[]) => void) => this.onExternalDrop(e, {}, addDocs); @undoBatch makeTextCollection = (childDocs: Doc[]) => { |