fix: change button label on wallet (#3581)

This commit is contained in:
dni ⚡ 2025-11-26 14:26:22 +01:00 committed by GitHub
parent 8c77f75cf1
commit 37ad515427
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -133,17 +133,17 @@
unelevated
color="primary"
class="q-mr-md"
@click="showParseDialog"
:disable="!this.g.wallet.canSendPayments"
@click="showReceiveDialog"
:label="$t('receive')"
:disable="!this.g.wallet.canReceivePayments"
icon="file_download"
></q-btn>
<q-btn
unelevated
color="primary"
class="q-mr-md"
@click="showReceiveDialog"
:disable="!this.g.wallet.canReceivePayments"
@click="showParseDialog"
:disable="!this.g.wallet.canSendPayments"
:label="$t('send')"
icon="file_upload"
></q-btn>