aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-23 00:12:31 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-23 00:12:31 -0400
commit4c56da7db9feb018e004354bb6bf333d3890d91b (patch)
treee4fe01241c738a53fee0e41f27ed9eccc8cbe46d /src
parentfc1fd8902b090b75c81347a37cce15145322b4e2 (diff)
text cursor icon in cell
Diffstat (limited to 'src')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaCellField.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaCellField.tsx b/src/client/views/collections/collectionSchema/SchemaCellField.tsx
index ffda334ec..08231dd91 100644
--- a/src/client/views/collections/collectionSchema/SchemaCellField.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaCellField.tsx
@@ -280,7 +280,7 @@ export class SchemaCellField extends ObservableReactComponent<SchemaCellFieldPro
contentEditable
className='schemaField-editing'
ref={r => { this._inputref = r; }}
- style={{ outline: 'none', overflow: 'auto', minHeight: `min(100%, ${(this._props.GetValue()?.split('\n').length || 1) * 15})`, minWidth: 20, }}
+ style={{ cursor: 'text', outline: 'none', overflow: 'auto', minHeight: `min(100%, ${(this._props.GetValue()?.split('\n').length || 1) * 15})`, minWidth: 20, }}
onBlur={e => this.finalizeEdit(false, true, false)}
autoFocus
onInput={this.onChange}