From 5e5003126c16ea44c6412058949a6d663c7107ff Mon Sep 17 00:00:00 2001 From: Jimmy Cai Date: Tue, 9 May 2017 18:23:24 +0200 Subject: [PATCH] fix missing user avatars in team list (#677) closes https://github.com/TryGhost/Ghost/issues/8389 - changed `user.image` to `user.profileImage` --- ghost/admin/app/components/gh-user-active.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/admin/app/components/gh-user-active.js b/ghost/admin/app/components/gh-user-active.js index d3947775d9..afd2c8707f 100644 --- a/ghost/admin/app/components/gh-user-active.js +++ b/ghost/admin/app/components/gh-user-active.js @@ -19,8 +19,8 @@ export default Component.extend({ return `${this.get('ghostPaths.assetRoot')}/img/user-image.png`; }), - userImageBackground: computed('user.image', 'userDefault', function () { - let url = this.get('user.image') || this.get('userDefault'); + userImageBackground: computed('user.profileImage', 'userDefault', function () { + let url = this.get('user.profileImage') || this.get('userDefault'); let safeUrl = Handlebars.Utils.escapeExpression(url); return htmlSafe(`background-image: url(${safeUrl})`);