diff options
author | bobzel <zzzman@gmail.com> | 2021-03-29 23:43:22 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-29 23:43:22 -0400 |
commit | 61656f35a86a219241c3f33256f23b7dea495371 (patch) | |
tree | 47a81dab39ccb0b42d2e044dcfc18b608922b202 /src | |
parent | 4ccb4dc950600cc0f73af066edc7aff31e03f8ae (diff) |
from last
Diffstat (limited to 'src')
-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 84285b5b5..d56d0d75e 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -231,7 +231,7 @@ export class CollectionTreeView extends CollectionSubView<Document, Partial<coll <div className="collectionTreeView-container" onContextMenu={this.onContextMenu}> <div className="collectionTreeView-dropTarget" style={{ background, paddingLeft: paddingX, paddingRight: paddingX, paddingTop, pointerEvents }} - onWheel={(e) => this._mainEle && this._mainEle.scrollHeight > this._mainEle.clientHeight && e.stopPropagation()} + onWheel={e => e.stopPropagation()} onDrop={this.onTreeDrop} ref={this.createTreeDropTarget}> {this.titleBar} |