Skip to content
This repository was archived by the owner on Mar 20, 2019. It is now read-only.

Commit 7478608

Browse files
committed
Fix thumbnail_url bug
1 parent 77dfe0f commit 7478608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/views/invitations/show.html.haml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
%h3=current_user.team.name
2222
.members
2323
-current_user.team.top_three_team_members.each do |member|
24-
=link_to(image_tag(member.thumbnail_url, :class => 'avatar', :alt => member.username), profile_path(member.username))
24+
=link_to(image_tag(member.avatar.url, :class => 'avatar', :alt => member.username), profile_path(member.username))
2525
-if current_user.team.size > 3
2626
.size="+ #{current_user.team.size - 3}"
2727
=link_to('Stay with this team', team_path(current_user.team, :flash => "Great, you're still on team #{current_user.team.name}"), :class => 'button stay')

0 commit comments

Comments
 (0)