aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-21 12:37:47 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-21 12:37:47 -0400
commit24fad06cbd2e273bb6729f21956e35243e602bb7 (patch)
tree851f46c5e1d647a7559d5bd8af0c1de04524135c /src/client/views/collections/collectionSchema/SchemaTableCell.tsx
parent8414744f15b58f55cee14dbabb5c0e6a4a62a4c6 (diff)
fixed bug where equation didn't save in cell field on reloading (batching issue)
Diffstat (limited to 'src/client/views/collections/collectionSchema/SchemaTableCell.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaTableCell.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
index 3233e363a..94fd9ec7d 100644
--- a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
@@ -152,6 +152,7 @@ export class SchemaTableCell extends ObservableReactComponent<SchemaTableCellPro
// parses a field from the "idToDoc(####)" format to DocumentId (d#) format for readability
cleanupField = (field: string) => {
+ if (field === ':=d6.type + d4.type + d3.type') console.log(true)
const idPattern = /idToDoc\((.*?)\)/g;
let modField = field.slice();
let matches;