fixed compare for push

This commit is contained in:
Dmitriy Zaporozhets 2012-02-29 23:34:06 +02:00
parent f6f939eeb8
commit 1924de91c5
2 changed files with 6 additions and 2 deletions

View file

@ -56,4 +56,8 @@ class Commit
def prev_commit
parents.first
end
def prev_commit_id
prev_commit.id
end
end

View file

@ -12,8 +12,8 @@
= time_ago_in_words(event.created_at)
ago.
- if event.commits.count > 1
= link_to compare_project_commits_path(event.project, :from => event.commits.last, :to => event.commits.first) do
Compare #{event.commits.last.id[0..8]}...#{event.commits.first.id[0..8]}
= link_to compare_project_commits_path(event.project, :from => event.commits.first.prev_commit_id, :to => event.commits.last.id) do
Compare #{event.commits.first.commit.id[0..8]}...#{event.commits.last.id[0..8]}
- @project = event.project
%ul.unstyled
= render event.commits