diff options
| author | vkalev <vjk1883@gmail.com> | 2021-07-15 22:13:41 -0500 |
|---|---|---|
| committer | vkalev <vjk1883@gmail.com> | 2021-07-15 22:13:41 -0500 |
| commit | 0f1e83c036c5ece55179c50251a239daae219771 (patch) | |
| tree | 96c2b17e8de0ba06eb47163a30daff02fab92fc6 /src/client/views/collections/CollectionTreeView.tsx | |
| parent | 48620bbe25f92eb179d53846aae5f0164ca6f1c2 (diff) | |
| parent | 31a00f5e5d374b8a2945525a75f80f4148c143b7 (diff) | |
Merge branch 'master' of https://github.com/brown-dash/Dash-Web into ink-gfx-victor
Merging master changes into ink branch
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[]) => { |
