From db124e8bc61d68ff9c2aa3d6bcc37b263f97d29a Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 29 Sep 2016 13:06:39 +0200 Subject: [PATCH] fix unit for timestamp --- popup/popup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ]);