diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-09-29 23:48:41 -0400 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-09-29 23:48:41 -0400 |
commit | 32abf9df5e29b8de49c6d484108f3e2daeda3fb6 (patch) | |
tree | a32bab00805c9f639d8c8395c8aec90e21cb207c | |
parent | 70a46647b00849ece22a172aeaa886eb02e94706 (diff) |
one line method signature fix for on drop
-rw-r--r-- | src/client/views/collections/CollectionStackingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackingView.tsx b/src/client/views/collections/CollectionStackingView.tsx index 45de0fefa..1eeb16c4a 100644 --- a/src/client/views/collections/CollectionStackingView.tsx +++ b/src/client/views/collections/CollectionStackingView.tsx @@ -227,7 +227,7 @@ export class CollectionStackingView extends CollectionSubView(doc => doc) { } @undoBatch @action - onDrop = (e: React.DragEvent): void => { + onDrop = async (e: React.DragEvent): Promise<void> => { let where = [e.clientX, e.clientY]; let targInd = -1; this._docXfs.map((cd, i) => { |