Remove Link from Push Events for deleted branches
This commit is contained in:
parent
35b31ba84f
commit
407b491e2d
2 changed files with 7 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
4
changelogs/unreleased/28082-deleted-branch-event-404.yml
Normal file
4
changelogs/unreleased/28082-deleted-branch-event-404.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Stop linking to deleted Branches in Activity tabs
|
||||
merge_request: 9203
|
||||
author: Jan Christophersen
|
Loading…
Reference in a new issue