diff options
| author | mehekj <mehek.jethani@gmail.com> | 2022-11-21 12:38:37 -0500 |
|---|---|---|
| committer | mehekj <mehek.jethani@gmail.com> | 2022-11-21 12:38:37 -0500 |
| commit | 73d3c63658c4bdf3268ea81a02eb96566869b855 (patch) | |
| tree | d59e63d7e22a093f2cb3cc1b734bbb0aadd69ee9 /src/client/views/collections/collectionSchema/SchemaRowBox.tsx | |
| parent | a58e71a9eea2717151e1a8c73e27068b02256390 (diff) | |
column deletion and new key menu fixes
Diffstat (limited to 'src/client/views/collections/collectionSchema/SchemaRowBox.tsx')
| -rw-r--r-- | src/client/views/collections/collectionSchema/SchemaRowBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaRowBox.tsx b/src/client/views/collections/collectionSchema/SchemaRowBox.tsx index bfce61952..5c1f32565 100644 --- a/src/client/views/collections/collectionSchema/SchemaRowBox.tsx +++ b/src/client/views/collections/collectionSchema/SchemaRowBox.tsx @@ -118,7 +118,7 @@ export class SchemaRowBox extends ViewBoxBaseComponent<SchemaRowBoxProps>() { </div> <div className="row-cells"> {this.props.columnKeys.map((key, index) => ( - <SchemaTableCell Document={this.props.Document} fieldKey={key} columnWidth={this.props.columnWidths[index]} /> + <SchemaTableCell key={key} Document={this.props.Document} fieldKey={key} columnWidth={this.props.columnWidths[index]} /> ))} </div> </div> |
