Give <a> elements in search results a key

... to make react shut up about them
This commit is contained in:
Richard van der Hoff 2016-02-22 17:44:34 +00:00
parent 26e66326a2
commit 4158a007db

View file

@ -146,19 +146,17 @@ class TextHighlighter extends BaseHighlighter {
* returns a React node
*/
_processSnippet(snippet, highlight) {
var spanProps = {
key: this._key++,
};
var key = this._key++;
if (highlight) {
spanProps.className = this.highlightClass;
}
var node = <span {...spanProps}>{ snippet }</span>;
var node =
<span key={key} className={highlight ? this.highlightClass : null }>
{ snippet }
</span>;
if (highlight && this.highlightLink) {
node = <a href={this.highlightLink}>{node}</a>
node = <a key={key} href={this.highlightLink}>{node}</a>
}
return node;
}
}