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:
parent
2870ac6c12
commit
08be256f1a
@ -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)
|
||||
}}
|
||||
>
|
||||
|
Loading…
x
Reference in New Issue
Block a user