Enhance ReceiveDialog and WalletService for LNURL handling and transaction tagging

- Added functionality to encode LNURL for QR code generation in ReceiveDialog, improving payment link sharing.
- Updated WalletService to include a tag property for transactions, allowing for better categorization and display in WalletPage.
- Enhanced WalletPage to display transaction tags, improving user visibility of transaction details.

These changes improve the user experience by providing clearer payment information and enhancing the functionality of the wallet module.
This commit is contained in:
padreug 2025-09-14 23:42:09 +02:00
parent 86b1710030
commit 981fc23422
3 changed files with 52 additions and 10 deletions

View file

@ -202,6 +202,9 @@ onMounted(() => {
<Badge :variant="getStatusColor(tx.status)" class="text-xs">
{{ tx.status }}
</Badge>
<Badge v-if="tx.tag" variant="outline" class="text-xs">
{{ tx.tag }}
</Badge>
</div>
</div>
</div>