mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 22:14:58 +08:00
fix @aviraldg thinko on needing a key on arrays :)
This commit is contained in:
parent
21fd5078f9
commit
81d5e16225
@ -58,7 +58,7 @@ module.exports = React.createClass({
|
|||||||
var fileList = [];
|
var fileList = [];
|
||||||
for(var i=0; i<files.length; i++) {
|
for(var i=0; i<files.length; i++) {
|
||||||
fileList.push(<li>
|
fileList.push(<li>
|
||||||
<TintableSvg src="img/files.svg" width="16" height="16" /> {files[i].name}
|
<TintableSvg key={i} src="img/files.svg" width="16" height="16" /> {files[i].name}
|
||||||
</li>);
|
</li>);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user