commit db124e8bc61d68ff9c2aa3d6bcc37b263f97d29a
parent 693e7c92e0dd23ee0577dea7d5f5a44eee1fa5be
Author: Florian Dold <florian.dold@gmail.com>
Date: Thu, 29 Sep 2016 13:06:39 +0200
fix unit for timestamp
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)
]);