From 75b3e99a20187a819ee22fa86123e31d9ca0743e Mon Sep 17 00:00:00 2001 From: Sato Hiroyuki Date: Thu, 24 Jan 2013 13:37:55 +0900 Subject: [PATCH] Fix not displaying day on commits history --- app/views/commits/_commits.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/commits/_commits.html.haml b/app/views/commits/_commits.html.haml index 0dc6664c1d6..e7ed971d7e8 100644 --- a/app/views/commits/_commits.html.haml +++ b/app/views/commits/_commits.html.haml @@ -1,6 +1,6 @@ - @commits.group_by { |c| c.committed_date.to_date }.each do |day, commits| %div.ui-box %h5.title - %i.icon-calendar + %i.icon-calendar= ' ' = day.stamp("28 Aug, 2010") %ul.well-list= render commits -- GitLab