From afecb250a42222aa3ac9b373897582da27e2e49e Mon Sep 17 00:00:00 2001 From: randx Date: Thu, 27 Sep 2012 17:13:26 +0300 Subject: [PATCH] Dont show compare link if only one commit in push --- app/views/events/_event_push.html.haml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/views/events/_event_push.html.haml b/app/views/events/_event_push.html.haml index 9b7f10d9d..b5273b542 100644 --- a/app/views/events/_event_push.html.haml +++ b/app/views/events/_event_push.html.haml @@ -18,9 +18,10 @@ - few_commits.each do |commit| = render "events/commit", commit: commit, project: project - %li.commits-stat - - if event.commits_count > 2 - %span ... and #{event.commits_count - 2} more commits. - = link_to project_compare_path(event.project, from: event.parent_commit.id, to: event.last_commit.id) do - %strong Compare → #{event.parent_commit.id[0..7]}...#{event.last_commit.id[0..7]} + - if event.commits_count > 1 + %li.commits-stat + - if event.commits_count > 2 + %span ... and #{event.commits_count - 2} more commits. + = link_to project_compare_path(event.project, from: event.parent_commit.id, to: event.last_commit.id) do + %strong Compare → #{event.parent_commit.id[0..7]}...#{event.last_commit.id[0..7]} .clearfix -- 2.11.0