mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-18 00:56:41 +10:00
fixed compare for push
This commit is contained in:
@@ -56,4 +56,8 @@ class Commit
|
||||
def prev_commit
|
||||
parents.first
|
||||
end
|
||||
|
||||
def prev_commit_id
|
||||
prev_commit.id
|
||||
end
|
||||
end
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user