mirror of https://github.com/vector-im/riot-web
Add `key` to footer links to appease React
parent
01794ae65f
commit
fa10022496
|
@ -43,7 +43,9 @@ module.exports = React.createClass({
|
||||||
const authFooterLinks = [];
|
const authFooterLinks = [];
|
||||||
for (const linkEntry of links) {
|
for (const linkEntry of links) {
|
||||||
authFooterLinks.push(
|
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…
Reference in New Issue