diff --git a/app/views/student_work/_show.html.erb b/app/views/student_work/_show.html.erb
index 4e9f337c0..dfe61d3db 100644
--- a/app/views/student_work/_show.html.erb
+++ b/app/views/student_work/_show.html.erb
@@ -61,7 +61,7 @@
- <%@work.student_works_scores.order("created_at desc").each do |score|%>
+ <%@work.student_works_scores.order("updated_at desc").each do |score|%>
<%= render :partial => 'student_work_score',:locals => {:score => score}%>
diff --git a/app/views/student_work/_student_work_score.html.erb b/app/views/student_work/_student_work_score.html.erb
index c6ff0adae..8d10853f8 100644
--- a/app/views/student_work/_student_work_score.html.erb
+++ b/app/views/student_work/_student_work_score.html.erb
@@ -8,7 +8,7 @@
<%= score.score%>分
回复
- <%=format_time score.created_at %>
+ <%=format_time score.updated_at %>