aboutsummaryrefslogtreecommitdiff
path: root/popup/popup.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'popup/popup.tsx')
-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)
]);