diff options
| author | bobzel <zzzman@gmail.com> | 2025-03-27 12:12:20 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-03-27 12:12:20 -0400 |
| commit | b1f85154edc250a18d0bc033df91ee1249975946 (patch) | |
| tree | 1a96d9d48ef82e39acedbb92c0b68cf2c418f12a /src/client/views/collections/TreeView.tsx | |
| parent | 64f65dd17f9dea4e0cee17600d2b0daa847bab73 (diff) | |
fix so that schemacellfield doesn't trigger a finalizeEdit when it's not editing. added 'red' color for template fields to schematablecell. fixed set field to allow setting data fields when field is an '_' and no template. fixed setting '=' when getting a keyValueString for empty fields with an '_' key.
Diffstat (limited to 'src/client/views/collections/TreeView.tsx')
| -rw-r--r-- | src/client/views/collections/TreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TreeView.tsx b/src/client/views/collections/TreeView.tsx index cb7da8c84..9889766d5 100644 --- a/src/client/views/collections/TreeView.tsx +++ b/src/client/views/collections/TreeView.tsx @@ -594,7 +594,7 @@ export class TreeView extends ObservableReactComponent<TreeViewProps> { const key = match[1]; const assign = match[2]; const val = match[3]; - Doc.SetField(doc, key, assign + val, false); + Doc.SetField(doc, key, assign + val); return true; } return false; |
