From 8b132080376841dfb026b6dbb9df3d47039c9e04 Mon Sep 17 00:00:00 2001 From: Alexey Kasyanchuk Date: Sat, 7 Jan 2017 20:40:31 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BE=D1=82=D0=BE=D0=B1=D1=80=D0=B0=D0=B6?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BD=D0=B0=20=D1=81=D1=82=D1=80?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D1=86=D0=B5=20=D1=82=D0=BE=D1=80=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/torrent-page.js | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 + }