diff --git a/app/views/competitions/enroll.html.erb b/app/views/competitions/enroll.html.erb
index 69bedd2f..ee439267 100644
--- a/app/views/competitions/enroll.html.erb
+++ b/app/views/competitions/enroll.html.erb
@@ -76,10 +76,10 @@
<% if team.teacher_id.present? %>
<%= image_tag(url_to_avatar(team.teacher), :width => "26", :height => "26", :class => "radius fl mr4") %>
<% end %>
- <% team.team_members.where("user_id != #{team.teacher_id.present? ? team.teacher_id : '-1'}")[0, 9].each do |member| %>
+ <% team.team_members.where("user_id != #{team.teacher_id.present? ? team.teacher_id : '-1'}")[0, 8].each do |member| %>
<%= link_to image_tag(url_to_avatar(member.user), :width => "20", :height => "20", :class => "radius fl mr5 mt3"), user_path(member.user), :title => member.user.show_name, :target => "_blank", :class => "fl", :alt => "用户头像" %>
<% end %>
- <% if team.team_members.size > 9 %>
+ <% if team.team_members.size > 8 %>
<% end %>