mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +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
|
* returns a React node
|
||||||
*/
|
*/
|
||||||
_processSnippet(snippet, highlight) {
|
_processSnippet(snippet, highlight) {
|
||||||
var spanProps = {
|
var key = this._key++;
|
||||||
key: this._key++,
|
|
||||||
};
|
|
||||||
|
|
||||||
if (highlight) {
|
var node =
|
||||||
spanProps.className = this.highlightClass;
|
<span key={key} className={highlight ? this.highlightClass : null }>
|
||||||
}
|
{ snippet }
|
||||||
|
</span>;
|
||||||
var node = <span {...spanProps}>{ snippet }</span>;
|
|
||||||
|
|
||||||
if (highlight && this.highlightLink) {
|
if (highlight && this.highlightLink) {
|
||||||
node = <a href={this.highlightLink}>{node}</a>
|
node = <a key={key} href={this.highlightLink}>{node}</a>
|
||||||
}
|
}
|
||||||
|
|
||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue