aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
diff options
context:
space:
mode:
authormehekj <mehek.jethani@gmail.com>2023-02-28 17:13:11 -0500
committermehekj <mehek.jethani@gmail.com>2023-02-28 17:13:11 -0500
commitdf4781b27848731b329068b13da89a17d04ad1a9 (patch)
tree684d562362bbc14dff719f8d7c7b5013167b441c /src/client/views/collections/collectionSchema/SchemaTableCell.tsx
parentd7d94fb4a9480a699eafa250a95821f7c584911d (diff)
selection working (except ctrl+click)
Diffstat (limited to 'src/client/views/collections/collectionSchema/SchemaTableCell.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaTableCell.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
index e2f6d99f1..4cfc5850c 100644
--- a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
@@ -21,8 +21,8 @@ export class SchemaTableCell extends React.Component<SchemaTableCellProps> {
render() {
return (
<div className="schema-table-cell" style={{ width: this.props.columnWidth }}>
- {/* {Field.toString(this.props.Document[this.props.fieldKey] as Field)} */}
- <EditableView contents={Field.toString(this.props.Document[this.props.fieldKey] as Field)} GetValue={() => Field.toKeyValueString(this.props.Document, this.props.fieldKey)} SetValue={(value: string) => true} />
+ {Field.toString(this.props.Document[this.props.fieldKey] as Field)}
+ {/* <EditableView contents={Field.toString(this.props.Document[this.props.fieldKey] as Field)} GetValue={() => Field.toKeyValueString(this.props.Document, this.props.fieldKey)} SetValue={(value: string) => true} /> */}
</div>
);
}