diff options
| author | bobzel <zzzman@gmail.com> | 2023-11-08 19:11:22 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-11-08 19:11:22 -0500 |
| commit | 224a9162859d98a36c13eb72c4b88f38eb52e28d (patch) | |
| tree | 51b459cb92932daf9f3f357ab74845a4623abb9e /src/client/views/collections/CollectionNoteTakingView.tsx | |
| parent | 601cb81824f99302eb4e4287304db33032f2aa0b (diff) | |
clean up of LightboxView
Diffstat (limited to 'src/client/views/collections/CollectionNoteTakingView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionNoteTakingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionNoteTakingView.tsx b/src/client/views/collections/CollectionNoteTakingView.tsx index bb6d94590..ac72a45e0 100644 --- a/src/client/views/collections/CollectionNoteTakingView.tsx +++ b/src/client/views/collections/CollectionNoteTakingView.tsx @@ -336,7 +336,7 @@ export class CollectionNoteTakingView extends CollectionSubView() { // onPointerMove is used to preview where a document will drop in a column once a drag is complete. @action onPointerMove = (force: boolean, ex: number, ey: number) => { - if (this.childDocList && (this.childDocList.includes(DragManager.DocDragData?.draggedDocuments.lastElement()!) || force || this.isContentActive())) { + if (this.childDocList?.includes(DragManager.DocDragData?.draggedDocuments?.lastElement() as any) || force || this.isContentActive()) { // get the current docs for the column based on the mouse's x coordinate const xCoord = this.props.ScreenToLocalTransform().transformPoint(ex, ey)[0] - 2 * this.gridGap; const colDocs = this.getDocsFromXCoord(xCoord); |
