aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-05-13 00:54:49 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-05-13 00:54:49 -0400
commit3b5cecea920b62a5d1633d8c6603b3b152794611 (patch)
tree44d9bab4e568ab8f24eab76c65b4f86b1944c8c7 /src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
parent2d7037dd5664700cda04b1fb0c6c77fe6f49d66c (diff)
editable column header started
Diffstat (limited to 'src/client/views/collections/collectionSchema/CollectionSchemaView.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/CollectionSchemaView.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
index e493b2e5d..c9d5307c9 100644
--- a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
+++ b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
@@ -312,9 +312,8 @@ export class CollectionSchemaView extends CollectionSubView() {
let matches;
let results = new Map<string, string>();
while ((matches = idPattern.exec(field)) !== null) {
- results.set(matches[0], matches[1].replace(/"/g, ''));
+ results.set(matches[0], matches[1]);
}
- console.log(results);
results.forEach((id, funcId) => {
modField = modField.replace(funcId, 'd' + (this.rowIndex(IdToDoc(id)) + 1).toString());
})