我有邮箱宝石,我有头像显示。在消息视图中它可以工作,但在收件箱中它为每条消息显示 2 个头像。一个头像来自发件人,另一个来自收件人 (current_user)。它应该只显示发件人的头像。
我相信它会在创建对话时同时显示。
有人知道我可以如何限制它,以便在收件箱内只显示发件人的头像吗?
对话收件箱:
<%= content_tag_for(:li, conversation) do |conversation| %>
<%= link_to conversation.subject, conversation%> - <%= conversation.updated_at.strftime("%B %-d, %Y %l:%M%P") %>
| From: <% conversation.participants.each do |participant| %>
<% if participant != current_user %>
<%= link_to participant.username, participant %>
<% end %>
<% end %>
<%= content_tag_for(:li, conversation.receipts_for(current_user)) do |receipt| %>
<% message = receipt.message %>
<%= image_tag message.sender.avatar.image_url(:avatar) %>
<% end %>
<% if conversation.is_completely_trashed?(current_user)%>
<%= link_to 'Untrash', [:untrash, conversation], method: :post%>
<%else%>
<%= link_to 'Move to trash', [:trash, conversation], method: :post%>
<% end %>
<% end %>