aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-23 00:25:19 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-23 00:25:19 -0400
commit1775ceb9b840ab73194eb84e673ef692c1fef454 (patch)
tree3b7e3a12e83b280937f5f78a7fc782192cc4887d /src
parent4c56da7db9feb018e004354bb6bf333d3890d91b (diff)
drag text highlighting
Diffstat (limited to 'src')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaCellField.tsx1
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>