fix: account name diplay

This commit is contained in:
Vlad Stan 2022-08-03 09:43:11 +03:00
parent 04327a98cb
commit b83f19e5d1
3 changed files with 3 additions and 0 deletions

View file

@ -84,6 +84,7 @@
:payed-amount="totalPayedAmount" :payed-amount="totalPayedAmount"
:mempool-endpoint="mempoolEndpoint" :mempool-endpoint="mempoolEndpoint"
:sats-denominated="satsDenominated" :sats-denominated="satsDenominated"
:accounts="accounts"
></utxo-list> ></utxo-list>
</div> </div>
</div> </div>

View file

@ -74,6 +74,7 @@ const mapWalletAccount = function (o) {
'YYYY-MM-DD HH:mm' 'YYYY-MM-DD HH:mm'
) )
: '', : '',
label: o.title,
expanded: false expanded: false
}) })
} }

View file

@ -113,6 +113,7 @@
<utxo-list <utxo-list
:utxos="utxos.data" :utxos="utxos.data"
:mempool-endpoint="mempoolHostname" :mempool-endpoint="mempoolHostname"
:accounts="walletAccounts"
:sats-denominated="config.sats_denominated" :sats-denominated="config.sats_denominated"
></utxo-list> ></utxo-list>
</q-tab-panel> </q-tab-panel>