Skip to content

Commit

Permalink
fix(gui): fix date displaing in torrent details
Browse files Browse the repository at this point in the history
  • Loading branch information
DEgITx committed Mar 12, 2018
1 parent 999ab0c commit 3d6baca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/torrent-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const TorrentInformation = (props) => {
// leftAvatar={<Avatar icon={<EditorInsertChart />} backgroundColor={yellow600} />}
rightIcon={<ActionInfo />}
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')}
/>
<ListItem
// leftAvatar={<Avatar icon={<EditorInsertChart />} backgroundColor={yellow600} />}
Expand Down

0 comments on commit 3d6baca

Please sign in to comment.