Show avatar of recent user in conversation list

This commit is contained in:
Steffen van Bergerem 2013-06-19 22:45:56 +02:00
parent 221c1bf959
commit ffb150f227
2 changed files with 3 additions and 1 deletions

View file

@ -26,6 +26,7 @@
* Fix login for short passwords [#4123](https://github.com/diaspora/diaspora/issues/4123) * 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) * 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) * 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 ## Features

View file

@ -6,7 +6,8 @@
.stream_element.conversation{:data=>{:guid=>conversation.id}, :class => ('unread' if unread_counts[conversation.id].to_i > 0)} .stream_element.conversation{:data=>{:guid=>conversation.id}, :class => ('unread' if unread_counts[conversation.id].to_i > 0)}
.media .media
.img .img
= person_image_tag(conversation.author) - if authors[conversation.id].present?
= person_image_tag(authors[conversation.id])
.bg .bg
= render(:partial => 'conversation_subject', = render(:partial => 'conversation_subject',