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

Fixed bug

This commit is contained in:
CalDescent 2022-08-17 19:51:03 +01:00
parent b0f29ac1f4
commit 9fb693bae2

View File

@ -3404,7 +3404,7 @@ class MultiWallet extends LitElement {
resizable resizable
header="${translate("walletpage.wchange35")}" header="${translate("walletpage.wchange35")}"
.renderer=${(root, column, data) => { .renderer=${(root, column, data) => {
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) 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> </vaadin-grid-column>