From 911c650dd3f08844c82fbb82625078bfb04173c0 Mon Sep 17 00:00:00 2001 From: Alexey Kasyanchuk Date: Mon, 12 Mar 2018 16:13:37 +0300 Subject: [PATCH] fix(gui): fix date displaing in torrent details --- src/app/torrent-page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/torrent-page.js b/src/app/torrent-page.js index 7e715dd..688f9f4 100644 --- a/src/app/torrent-page.js +++ b/src/app/torrent-page.js @@ -121,7 +121,7 @@ const TorrentInformation = (props) => { // leftAvatar={} backgroundColor={yellow600} />} rightIcon={} primaryText="Indexed/Added torrent date" - secondaryText={moment(torrent.added).format('MMMM Do YYYY, h:mm:ss')} + secondaryText={moment(torrent.added * 1000).format('MMMM Do YYYY, hh:mm')} /> } backgroundColor={yellow600} />}