PLT-5118 moving to last_picture_update for the profile img (#4985)

Этот коммит содержится в:
Corey Hulen
2017-01-06 12:13:22 -05:00
коммит произвёл Joram Wilander
родитель 1aa235b10d
Коммит e82bcea0d0
15 изменённых файлов: 19 добавлений и 19 удалений

Просмотреть файл

@@ -70,7 +70,7 @@ class AtMentionSuggestion extends Suggestion {
icon = (
<img
className='mention__image'
src={Client.getUsersRoute() + '/' + user.id + '/image?time=' + user.update_at}
src={Client.getUsersRoute() + '/' + user.id + '/image?time=' + user.last_picture_update}
/>
);
}

Просмотреть файл

@@ -41,7 +41,7 @@ class SearchUserSuggestion extends Suggestion {
<i className='fa fa fa-plus-square'/>
<img
className='profile-img rounded'
src={Client.getUsersRoute() + '/' + item.id + '/image?time=' + item.update_at}
src={Client.getUsersRoute() + '/' + item.id + '/image?time=' + item.last_picture_update}
/>
<div className='mention--align'>
<span>

Просмотреть файл

@@ -35,7 +35,7 @@ class SwitchChannelSuggestion extends Suggestion {
<div className='pull-left'>
<img
className='mention__image'
src={Client.getUsersRoute() + '/' + item.id + '/image?time=' + item.update_at}
src={Client.getUsersRoute() + '/' + item.id + '/image?time=' + item.last_picture_update}
/>
</div>
);