Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Wortschack <mwortschack@gitlab.com>2018-11-14 15:14:32 +0300
committerPhil Hughes <me@iamphill.com>2018-11-14 15:14:32 +0300
commite528866a736161c70d9bac88d59c7118705cc4ee (patch)
tree582158b0c73210f96cdb14499bccc40715b6aca1 /app/views/events
parentc93439605bdad009754be70007c798b3d345e677 (diff)
Resolve "Activity Feed - Missing padding in event note when a branch is deleted"
Diffstat (limited to 'app/views/events')
-rw-r--r--app/views/events/event/_push.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/events/event/_push.html.haml b/app/views/events/event/_push.html.haml
index 82693ec832e..69914fccc48 100644
--- a/app/views/events/event/_push.html.haml
+++ b/app/views/events/event/_push.html.haml
@@ -7,10 +7,10 @@
.event-title.d-flex.flex-wrap
= inline_event_icon(event)
%span.event-type.d-inline-block.append-right-4.pushed #{event.action_name} #{event.ref_type}
- %span
+ %span.append-right-4
- commits_link = project_commits_path(project, event.ref_name)
- should_link = event.tag? ? project.repository.tag_exists?(event.ref_name) : project.repository.branch_exists?(event.ref_name)
- = link_to_if should_link, event.ref_name, commits_link, class: 'ref-name append-right-4'
+ = link_to_if should_link, event.ref_name, commits_link, class: 'ref-name'
= render "events/event_scope", event: event