aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
diff options
context:
space:
mode:
authormehekj <mehek.jethani@gmail.com>2023-01-30 22:14:52 -0500
committermehekj <mehek.jethani@gmail.com>2023-01-30 22:14:52 -0500
commitea73082dc0293a0bafde20b0f82d674b7ca230f9 (patch)
tree9781b9af3b7e3260ea28c72ea57791912040f32b /src/client/views/collections/collectionSchema/SchemaTableCell.tsx
parent6c58ca9d473103624be82c6f2da90f22bafd7b98 (diff)
basic sorting
Diffstat (limited to 'src/client/views/collections/collectionSchema/SchemaTableCell.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaTableCell.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
index 7e2fa1f6f..5d9474173 100644
--- a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
@@ -14,8 +14,6 @@ export class SchemaTableCell extends React.Component<SchemaTableCellProps> {
render() {
return (
<div className="schema-table-cell" style={{ width: this.props.columnWidth }}>
- {/* {StrCast(this.props.Document[this.props.fieldKey])} */}
- {/* Field.toKeyValueString(this.props.Document, this.props.fieldKey) */}
{Field.toString(this.props.Document[this.props.fieldKey] as Field)}
</div>
);