diff options
| author | Sam Wilkins <samwilkins333@gmail.com> | 2020-02-16 12:22:10 -0500 |
|---|---|---|
| committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-02-16 12:22:10 -0500 |
| commit | b42e1e1e2da941955d7751b6003f18fecd5f2f8d (patch) | |
| tree | 88d539781aeaf9dc1e0990040ade3ac2d35ecd62 /src/client/views/collections/CollectionLinearView.tsx | |
| parent | e5897bc9b2d7266c11c8d8f31b39e4666fe3a6a3 (diff) | |
collection sub view and google authentication manager cleanup, deleteAssets route added
Diffstat (limited to 'src/client/views/collections/CollectionLinearView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionLinearView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionLinearView.tsx b/src/client/views/collections/CollectionLinearView.tsx index 7eb316cf0..9bbc9f1b6 100644 --- a/src/client/views/collections/CollectionLinearView.tsx +++ b/src/client/views/collections/CollectionLinearView.tsx @@ -67,7 +67,7 @@ export class CollectionLinearView extends CollectionSubView(LinearDocument) { protected createDashEventsTarget = (ele: HTMLDivElement) => { //used for stacking and masonry view this._dropDisposer && this._dropDisposer(); if (ele) { - this._dropDisposer = DragManager.MakeDropTarget(ele, this.drop.bind(this)); + this._dropDisposer = DragManager.MakeDropTarget(ele, this.onInternalDrop.bind(this)); } } |
