Add missing key to torrent status element

Fixes #1116
This commit is contained in:
Josip Janzic
2017-04-27 21:29:18 +02:00
parent a82498ba16
commit 96f5f855a3

View File

@@ -216,7 +216,7 @@ module.exports = class TorrentList extends React.Component {
} else { // torrentSummary.status is 'new' or something unexpected
status = ''
}
return (<span>{status}</span>)
return (<span key='torrent-status'>{status}</span>)
}
}