Fix lint error (Line >100 chars)
This commit is contained in:
parent
ca97413b76
commit
aab918ff1a
1 changed files with 1 additions and 1 deletions
|
|
@ -289,7 +289,7 @@ module.exports = class TorrentList extends React.Component {
|
|||
fileRows = fileRows.sort((a, b) => sorter(a.file.name, b.file.name))
|
||||
}
|
||||
|
||||
fileRows = fileRows.map((object) => this.renderFileRow(torrentSummary, object.file, object.index))
|
||||
fileRows = fileRows.map((obj) => this.renderFileRow(torrentSummary, obj.file, obj.index))
|
||||
|
||||
filesElement = (
|
||||
<div key='files' className='files'>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue