tweak: dont show full id on wallet select box (#3017)

* tweak: dont show full id on wallet select box
* chore bundle

---------

Co-authored-by: dni  <office@dnilabs.com>
This commit is contained in:
Arc 2025-03-04 10:23:02 +00:00 committed by GitHub
parent f2b9aafc51
commit a4ca88b6a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -209,7 +209,7 @@ window.LNbits = {
}) })
obj.walletOptions = obj.wallets.map(obj => { obj.walletOptions = obj.wallets.map(obj => {
return { return {
label: [obj.name, ' - ', obj.id].join(''), label: [obj.name, ' - ', obj.id.substring(0, 5), '...'].join(''),
value: obj.id value: obj.id
} }
}) })