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

Fix IN / OUT tag for ARRR transactions

This commit is contained in:
CalDescent 2022-08-17 19:46:36 +01:00
parent 6fc3732cb6
commit b0f29ac1f4

View File

@ -3404,7 +3404,7 @@ class MultiWallet extends LitElement {
resizable
header="${translate("walletpage.wchange35")}"
.renderer=${(root, column, data) => {
render(html` ${translate("walletpage.wchange40")} ${data.item.amount > 0 ? html`<span class="color-out">${translate("walletpage.wchange7")}</span>` : html`<span class="color-in">${translate("walletpage.wchange8")}</span>`} `, root)
render(html` ${translate("walletpage.wchange40")} ${data.item.totalAmount > 0 ? html`<span class="color-out">${translate("walletpage.wchange7")}</span>` : html`<span class="color-in">${translate("walletpage.wchange8")}</span>`} `, root)
}}
>
</vaadin-grid-column>