summary refs log tree commit diff
path: root/webclient/home/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'webclient/home/home.html')
-rw-r--r--webclient/home/home.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/webclient/home/home.html b/webclient/home/home.html

index d38b843d83..1b1c21d9d2 100644 --- a/webclient/home/home.html +++ b/webclient/home/home.html
@@ -9,13 +9,13 @@ <tr> <td> <div class="profile-avatar"> - <img ng-src="{{ config.avatarUrl || 'img/default-profile.jpg' }}"/> + <img ng-src="{{ (null !== profile.avatarUrl) ? profile.avatarUrl : 'img/default-profile.jpg' }}"/> </div> </td> <td> <div id="user-ids"> - <div id="user-displayname">{{ config.displayName }}</div> - <div>{{ config.user_id }}</div> + <div id="user-displayname">{{ profile.displayName }}</div> + <div>{{ config.user_id }}</div> </div> </td> </tr>