diff options
author | bobzel <zzzman@gmail.com> | 2020-08-02 14:12:27 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-02 14:12:27 -0400 |
commit | aa6e25c656a5de0adcf06a01e88f6b0417efe74c (patch) | |
tree | 3fb547db0e8754962d98bd640546660bb8cf99c2 /src | |
parent | df1874bb4bfbcb81287b8e211b9638ad5507c196 (diff) |
fixed warrning message about kes with treeView
Diffstat (limited to 'src')
-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 705871a6f..21292b900 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -328,7 +328,7 @@ class TreeView extends React.Component<TreeViewProps> { [...this.props.renderedIds, this.doc[Id]], this.props.libraryPath, this.props.onCheckedClick, this.props.onChildClick, this.props.ignoreFields)} </ul >; } else if (this.treeViewExpandedView === "fields") { - return <ul><div ref={this._dref} style={{ display: "inline-block" }} key={this.doc[Id] + this.doc.title}> + return <ul key={this.doc[Id] + this.doc.title}><div ref={this._dref} style={{ display: "inline-block" }} > {this.expandedField} </div></ul>; } else { |