Fixed not shown avatar in organization profile.

This commit is contained in:
Martin Edenhofer 2015-02-08 14:14:36 +01:00
parent 46c8cd7afd
commit 7ade40308d

View file

@ -27,6 +27,6 @@ class App.Organization extends App.Model
data['members'] = [] data['members'] = []
for user_id in data['member_ids'] for user_id in data['member_ids']
if App.User.exists( user_id ) if App.User.exists( user_id )
user = App.User.find( user_id ) user = App.User.fullLocal( user_id )
data['members'].push user data['members'].push user
data data