Fix pubkey preview truncating last character
This is just a minor fix for where the pubkey preview on the profile page wouldn't show the last character of each pubkey listed. Change-Id: Iecc20ada68733f4c53af79dd9c8d9ae9b04ddedb
This commit is contained in:
parent
04f6150b4d
commit
63a8630da7
@ -71,7 +71,7 @@
|
|||||||
'shortKey': [
|
'shortKey': [
|
||||||
key.pubkey.slice(0, 10),
|
key.pubkey.slice(0, 10),
|
||||||
'.',
|
'.',
|
||||||
key.pubkey.slice(-10, -1)
|
key.pubkey.slice(-10)
|
||||||
].join('.'),
|
].join('.'),
|
||||||
'pubkey': key.pubkey,
|
'pubkey': key.pubkey,
|
||||||
'comment': key.comment
|
'comment': key.comment
|
||||||
|
Loading…
x
Reference in New Issue
Block a user