aboutsummaryrefslogtreecommitdiff
path: root/popup
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-09-29 13:06:39 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-09-29 13:06:39 +0200
commitdb124e8bc61d68ff9c2aa3d6bcc37b263f97d29a (patch)
treefdb67e68b8f5ff6a9bcc555426a28298ceb22f2a /popup
parent693e7c92e0dd23ee0577dea7d5f5a44eee1fa5be (diff)
downloadwallet-core-db124e8bc61d68ff9c2aa3d6bcc37b263f97d29a.tar.xz
fix unit for timestamp
Diffstat (limited to 'popup')
-rw-r--r--popup/popup.tsx2
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)
]);