mirror of
https://github.com/vector-im/element-web.git
synced 2026-02-10 18:22:16 +01:00
Add key to footer links to appease React
This commit is contained in:
parent
01794ae65f
commit
fa10022496
@ -43,7 +43,9 @@ module.exports = React.createClass({
|
||||
const authFooterLinks = [];
|
||||
for (const linkEntry of links) {
|
||||
authFooterLinks.push(
|
||||
<a href={linkEntry.url} target="_blank" rel="noopener">{linkEntry.text}</a>,
|
||||
<a href={linkEntry.url} key={linkEntry.text} target="_blank" rel="noopener">
|
||||
{linkEntry.text}
|
||||
</a>,
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user