diff --git a/server/ui/src/index.tsx b/server/ui/src/index.tsx index 68ec49c..7d54aa5 100644 --- a/server/ui/src/index.tsx +++ b/server/ui/src/index.tsx @@ -77,41 +77,39 @@ class TorrentSearchComponent extends Component { table() { return (
-
- - +
+ + + + + + + + + + + + {this.state.results.torrents.map(torrent => ( - - - - - - + + + + + + - - - {this.state.results.torrents.map(torrent => ( - - - - - - - - - ))} - -
NameSizeSeedsLeechesCreated
NameSizeSeedsLeechesCreated{torrent.name}{humanFileSize(torrent.size_bytes, true)}
{torrent.seeders}
{torrent.leechers} + {moment(torrent.created_unix * 1000).fromNow()} + + + + + + + +
{torrent.name}{humanFileSize(torrent.size_bytes, true)}
{torrent.seeders}
{torrent.leechers} - {moment(torrent.created_unix * 1000).fromNow()} - - - - - - - -
-
+ ))} + + {this.paginator()}
);