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:
Paul Van Eck 2016-01-24 11:18:15 -08:00
parent 04f6150b4d
commit 63a8630da7

View File

@ -71,7 +71,7 @@
'shortKey': [
key.pubkey.slice(0, 10),
'.',
key.pubkey.slice(-10, -1)
key.pubkey.slice(-10)
].join('.'),
'pubkey': key.pubkey,
'comment': key.comment