mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-04-24 11:57:51 +00:00
Show deploy_at
This commit is contained in:
parent
055ab0d6d1
commit
45d9dd913d
@ -37,7 +37,7 @@
|
|||||||
"os-locale": "3.0.0"
|
"os-locale": "3.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"electron": "22.0.2",
|
"electron": "22.0.3",
|
||||||
"electron-builder": "23.6.0",
|
"electron-builder": "23.6.0",
|
||||||
"electron-packager": "17.1.1",
|
"electron-packager": "17.1.1",
|
||||||
"eslint-plugin-lit": "1.8.0",
|
"eslint-plugin-lit": "1.8.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "qortal-ui-crypto",
|
"name": "qortal-ui-crypto",
|
||||||
"version": "2.2.5",
|
"version": "3.0.0",
|
||||||
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"QORT",
|
"QORT",
|
||||||
|
@ -849,7 +849,7 @@ class MultiWallet extends LitElement {
|
|||||||
<span class="title"> ${translate("walletpage.wchange10")} </span>
|
<span class="title"> ${translate("walletpage.wchange10")} </span>
|
||||||
<br />
|
<br />
|
||||||
<div style="display: inline;">
|
<div style="display: inline;">
|
||||||
${this.renderSQB()}
|
${this.selectedTransaction.type === 'DEPLOY_AT' ? html`${this.renderCAB()}` : html`${this.renderSQB()}`}
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
${!this.selectedTransaction.amount ? '' : html`
|
${!this.selectedTransaction.amount ? '' : html`
|
||||||
@ -3843,6 +3843,23 @@ class MultiWallet extends LitElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
renderCAB() {
|
||||||
|
return html`
|
||||||
|
<span>${this.selectedTransaction.aTAddress}</span>
|
||||||
|
<button-icon-copy
|
||||||
|
title="${translate("blockpage.bcchange8")}"
|
||||||
|
onSuccessMessage="${translate("walletpage.wchange4")}"
|
||||||
|
onErrorMessage="${translate("walletpage.wchange39")}"
|
||||||
|
textToCopy=${this.selectedTransaction.aTAddress}
|
||||||
|
buttonSize="24px"
|
||||||
|
iconSize="16px"
|
||||||
|
color="var(--copybutton)"
|
||||||
|
offsetLeft="4px"
|
||||||
|
>
|
||||||
|
</button-icon-copy>
|
||||||
|
`
|
||||||
|
}
|
||||||
|
|
||||||
renderFetchText() {
|
renderFetchText() {
|
||||||
return html`${translate("walletpage.wchange1")}`
|
return html`${translate("walletpage.wchange1")}`
|
||||||
}
|
}
|
||||||
@ -4897,7 +4914,12 @@ class MultiWallet extends LitElement {
|
|||||||
path="creatorAddress"
|
path="creatorAddress"
|
||||||
>
|
>
|
||||||
</vaadin-grid-column>
|
</vaadin-grid-column>
|
||||||
<vaadin-grid-column auto-width header="${translate("walletpage.wchange10")}" path="recipient"></vaadin-grid-column>
|
<vaadin-grid-column auto-width header="${translate("walletpage.wchange10")}"
|
||||||
|
.renderer=${(root, column, data) => {
|
||||||
|
render(html`${data.item.type === 'DEPLOY_AT' ? html`${data.item.aTAddress}` : html`${data.item.recipient}`}`, root)
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
</vaadin-grid-column>
|
||||||
<vaadin-grid-column auto-width header="${translate("walletpage.wchange36")}" path="fee"></vaadin-grid-column>
|
<vaadin-grid-column auto-width header="${translate("walletpage.wchange36")}" path="fee"></vaadin-grid-column>
|
||||||
<vaadin-grid-column auto-width header="${translate("walletpage.wchange11")}" path="amount"></vaadin-grid-column>
|
<vaadin-grid-column auto-width header="${translate("walletpage.wchange11")}" path="amount"></vaadin-grid-column>
|
||||||
<vaadin-grid-column auto-width
|
<vaadin-grid-column auto-width
|
||||||
|
Loading…
x
Reference in New Issue
Block a user