4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00

Fixed issue causing the time to show as "now" in the transaction list for Pirate Chain

This commit is contained in:
CalDescent 2022-07-15 15:01:46 +01:00
parent 2870ac6c12
commit 08be256f1a

View File

@ -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` <time-ago datetime=${time.toISOString()}> </time-ago> `, root)
}}
>