diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-06-23 00:25:19 -0400 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-06-23 00:25:19 -0400 |
commit | 1775ceb9b840ab73194eb84e673ef692c1fef454 (patch) | |
tree | 3b7e3a12e83b280937f5f78a7fc782192cc4887d | |
parent | 4c56da7db9feb018e004354bb6bf333d3890d91b (diff) |
drag text highlighting
-rw-r--r-- | src/client/views/collections/collectionSchema/SchemaCellField.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaCellField.tsx b/src/client/views/collections/collectionSchema/SchemaCellField.tsx index 08231dd91..fc191014c 100644 --- a/src/client/views/collections/collectionSchema/SchemaCellField.tsx +++ b/src/client/views/collections/collectionSchema/SchemaCellField.tsx @@ -288,6 +288,7 @@ export class SchemaCellField extends ObservableReactComponent<SchemaCellFieldPro onPointerDown={e => e.stopPropagation} onClick={e => e.stopPropagation} onPointerUp={e => e.stopPropagation} + onPointerMove={e => {e.stopPropagation(); e.preventDefault()}} dangerouslySetInnerHTML={{ __html: this._displayedContent }} > </div> |