diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-09-29 13:06:39 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-09-29 13:06:39 +0200 |
commit | db124e8bc61d68ff9c2aa3d6bcc37b263f97d29a (patch) | |
tree | fdb67e68b8f5ff6a9bcc555426a28298ceb22f2a | |
parent | 693e7c92e0dd23ee0577dea7d5f5a44eee1fa5be (diff) |
fix unit for timestamp
-rw-r--r-- | popup/popup.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/popup/popup.tsx b/popup/popup.tsx index 946b148a6..e5e929eb0 100644 --- a/popup/popup.tsx +++ b/popup/popup.tsx @@ -275,7 +275,7 @@ namespace WalletHistory { subjectMemo[record.subjectId as string] = true; let item = m("div.historyItem", {}, [ - m("div.historyDate", {}, (new Date(record.timestamp * 1000)).toString()), + m("div.historyDate", {}, (new Date(record.timestamp)).toString()), formatHistoryItem(record) ]); |