mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
Give <a> elements in search results a key
... to make react shut up about them
This commit is contained in:
parent
26e66326a2
commit
4158a007db
1 changed files with 7 additions and 9 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue