From 08be256f1a978dbd1d2cc2873c3e6d57715469c4 Mon Sep 17 00:00:00 2001 From: CalDescent <> Date: Fri, 15 Jul 2022 15:01:46 +0100 Subject: [PATCH] Fixed issue causing the time to show as "now" in the transaction list for Pirate Chain --- qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js index 3304d972..df1c8647 100644 --- a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js +++ b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js @@ -3347,7 +3347,7 @@ class MultiWallet extends LitElement { resizable header="${translate("walletpage.wchange14")}" .renderer=${(root, column, data) => { - const time = new Date(data.item.timestamp * 1000) + const time = new Date(data.item.timestamp) render(html` `, root) }} >