diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-08-04 01:17:29 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-08-04 01:17:29 -0400 |
| commit | 02346eabdefd428ca23d6a3fbefdcd51ef62b738 (patch) | |
| tree | b5b6eb3a124c9f7b1d9da2aa762e2726825bd84d /src/client/views/search/SearchItem.tsx | |
| parent | bbca58e2ff087bbd4bb2ee12e6c4567e146450e3 (diff) | |
fixed errors/warnings
Diffstat (limited to 'src/client/views/search/SearchItem.tsx')
| -rw-r--r-- | src/client/views/search/SearchItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/search/SearchItem.tsx b/src/client/views/search/SearchItem.tsx index 1b9bba5c6..48eb87251 100644 --- a/src/client/views/search/SearchItem.tsx +++ b/src/client/views/search/SearchItem.tsx @@ -134,7 +134,7 @@ export class LinkContextMenu extends React.Component<LinkMenuProps> { <div className="collection"><a onMouseEnter={this.highlightDoc(this.props.doc1)} onMouseLeave={this.unHighlightDoc(this.props.doc1)} onClick={this.getOnClick(this.props.doc1)}>Doc 1: {this.props.doc2.title}</a></div> <div><a onMouseEnter={this.highlightDoc(this.props.doc2)} onMouseLeave={this.unHighlightDoc(this.props.doc2)} onClick={this.getOnClick(this.props.doc2)}>Doc 2: {this.props.doc1.title}</a></div> </div> - ) + ); } } |
