Fix share modal friends list

This commit is contained in:
yflory 2019-08-27 11:37:39 +02:00
parent 3c8b9a55e0
commit c62e279224
2 changed files with 6 additions and 4 deletions

View File

@ -357,17 +357,18 @@ define([
if (curve.length <= 40) { return; }
var data = friends[curve];
if (!data.notifications) { return; }
var name = data.displayName || Messages.anonymous;
var avatar = h('span.cp-share-friend-avatar.cp-avatar');
UIElements.displayAvatar(common, $(avatar), data.avatar, data.displayName);
UIElements.displayAvatar(common, $(avatar), data.avatar, name);
return h('div.cp-share-friend', {
'data-curve': data.curvePublic,
'data-name': data.displayName,
'data-name': name,
'data-order': i,
title: data.displayName,
title: name,
style: 'order:'+i+';'
},[
avatar,
h('span.cp-share-friend-name', data.displayName)
h('span.cp-share-friend-name', name)
]);
}).filter(function (x) { return x; });
var smallCurves = Object.keys(friends).map(function (c) {

View File

@ -85,6 +85,7 @@ define([
}).nThen(function (/*waitFor*/) {
metaObj.doc = {};
var additionalPriv = {
fileHost: ApiConfig.fileHost,
accountName: Utils.LocalStore.getAccountName(),
origin: window.location.origin,
pathname: window.location.pathname,