aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-10-04 21:51:25 -0400
committerbobzel <zzzman@gmail.com>2024-10-04 21:51:25 -0400
commit2012b3ade1d4644115e3a59cf0a1deec07e23637 (patch)
tree1f7de3166632553fc19a4b0654d9640522bb86b8 /src/client/views/collections/collectionSchema
parent695a757e1d5d3469a9871b0760c9dedeb073a489 (diff)
from last
Diffstat (limited to 'src/client/views/collections/collectionSchema')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaCellField.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaCellField.tsx b/src/client/views/collections/collectionSchema/SchemaCellField.tsx
index ce41b2758..3924ed087 100644
--- a/src/client/views/collections/collectionSchema/SchemaCellField.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaCellField.tsx
@@ -155,8 +155,8 @@ export class SchemaCellField extends ObservableReactComponent<SchemaCellFieldPro
}
}
- matches.forEach((match: string) => {
- chunkedText = chunkedText.replace(match, this.generateSpan(match, cells.get(match)));
+ matches.forEach(m => {
+ chunkedText = chunkedText.replace(m, this.generateSpan(m, cells.get(m)));
});
return chunkedText;