diff options
author | bobzel <zzzman@gmail.com> | 2025-03-26 23:26:57 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-03-26 23:26:57 -0400 |
commit | 6d398efb788689eb1e7bf1ad49e52fd6f11b77d2 (patch) | |
tree | 7af024f51f8cca4b87592b3c9520a3ceeca16631 | |
parent | 730d568fb4cb37c5d673517179e8e5dc532ad9c8 (diff) |
from last
-rw-r--r-- | src/client/views/collections/collectionSchema/SchemaCellField.tsx | 2 |
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 1dff76df2..9a3ffc7f2 100644 --- a/src/client/views/collections/collectionSchema/SchemaCellField.tsx +++ b/src/client/views/collections/collectionSchema/SchemaCellField.tsx @@ -96,7 +96,7 @@ export class SchemaCellField extends ObservableReactComponent<SchemaCellFieldPro { fireImmediately: true } ); this._disposers.fieldUpdate = reaction( - () => ({ fieldVal: this._props.GetValue(), editing: 0 }), // this._editing }), + () => ({ fieldVal: this._props.GetValue(), editing: this._editing }), ({ fieldVal, editing }) => { this._unrenderedContent = fieldVal ?? ''; !this._editing && this.finalizeEdit(false, false, false); |