Remove Link from Push Events for deleted branches

This commit is contained in:
Jan Christophersen 2017-02-13 19:47:41 +01:00
parent 35b31ba84f
commit 407b491e2d
2 changed files with 7 additions and 5 deletions

View File

@ -3,11 +3,9 @@
.event-title
%span.author_name= link_to_author event
%span.pushed #{event.action_name} #{event.ref_type}
- if event.rm_ref?
%strong= event.ref_name
- else
%strong
= link_to event.ref_name, namespace_project_commits_path(project.namespace, project, event.ref_name), title: h(event.target_title)
%strong
- commits_link = namespace_project_commits_path(project.namespace, project, event.ref_name)
= link_to_if project.repository.branch_exists?(event.ref_name), event.ref_name, commits_link
= render "events/event_scope", event: event

View File

@ -0,0 +1,4 @@
---
title: Stop linking to deleted Branches in Activity tabs
merge_request: 9203
author: Jan Christophersen