From 63a8630da71941f3da934b2d65dbd15ff459a5b8 Mon Sep 17 00:00:00 2001 From: Paul Van Eck Date: Sun, 24 Jan 2016 11:18:15 -0800 Subject: [PATCH] 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 --- refstack-ui/app/components/profile/profileController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/refstack-ui/app/components/profile/profileController.js b/refstack-ui/app/components/profile/profileController.js index 2a8bb69d..9213241c 100644 --- a/refstack-ui/app/components/profile/profileController.js +++ b/refstack-ui/app/components/profile/profileController.js @@ -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