diff --git a/src/torrent-page.js b/src/torrent-page.js index 7c1f07f..e8ea44a 100644 --- a/src/torrent-page.js +++ b/src/torrent-page.js @@ -171,6 +171,17 @@ export default class TorrentPage extends Component { icon={} />
BTIH:
{this.torrent.hash}
+ { + this.torrent.seeders || this.torrent.leechers || this.torrent.completed + ? +
+
seeders: {this.torrent.seeders}
+
leechers: {this.torrent.leechers}
+
completed: {this.torrent.completed}
+
+ : + null + }