diff options
| author | bob <bcz@cs.brown.edu> | 2019-03-21 15:30:15 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-03-21 15:30:15 -0400 |
| commit | 08c35582dc71623c2b7300458238b6ba25ff98d7 (patch) | |
| tree | 9ce1967ca0c344de60b63e08588d427586417233 /src/client/views/collections/CollectionTreeView.tsx | |
| parent | 23363a67dadf35e2b146b44a31f51856890331df (diff) | |
fixed performance problem with loading schema with a lot of documents.
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionTreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx index ec1bf5d0e..6cc14ebcb 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -76,7 +76,7 @@ class TreeView extends React.Component<TreeViewProps> { }} />); return ( - <div key={this.props.document.Id} className="docContainer" ref={reference} onPointerDown={onItemDown}> + <div className="docContainer" ref={reference} onPointerDown={onItemDown}> {editableView(this.props.document.Title)} <div className="delete-button" onClick={this.delete}><FontAwesomeIcon icon="trash-alt" size="xs" /></div> </div >) |
