Show avatar of recent user in conversation list
This commit is contained in:
parent
221c1bf959
commit
ffb150f227
2 changed files with 3 additions and 1 deletions
|
|
@ -26,6 +26,7 @@
|
|||
* Fix login for short passwords [#4123](https://github.com/diaspora/diaspora/issues/4123)
|
||||
* Add loading indicator on tag pages, remove the second one from the profile page [#4041](https://github.com/diaspora/diaspora/issues/4041)
|
||||
* Leaving the `to` field blank when sending a private message causes a server error [#4227](https://github.com/diaspora/diaspora/issues/4227)
|
||||
* Show avatar of recent user in conversation list [#4237](https://github.com/diaspora/diaspora/issues/4237)
|
||||
|
||||
## Features
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,8 @@
|
|||
.stream_element.conversation{:data=>{:guid=>conversation.id}, :class => ('unread' if unread_counts[conversation.id].to_i > 0)}
|
||||
.media
|
||||
.img
|
||||
= person_image_tag(conversation.author)
|
||||
- if authors[conversation.id].present?
|
||||
= person_image_tag(authors[conversation.id])
|
||||
|
||||
.bg
|
||||
= render(:partial => 'conversation_subject',
|
||||
|
|
|
|||
Loading…
Reference in a new issue