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
path: root/app/views
diff options
context:
space:
mode:
authortrojkilla <13hurdw@gmail.com>2019-05-09 17:42:45 +0300
committerFatih Acet <acetfatih@gmail.com>2019-05-09 17:42:45 +0300
commitb3665572d13255727c7e1623f37db5c5bcceb76c (patch)
tree8f391822093cb02d4c45f060c34d15fd2245c2b3 /app/views
parent8361506afe7fc9bbb8056e8793741756497c5032 (diff)
Open merge collab link in new tab
fixes clearing checked settings
Diffstat (limited to 'app/views')
-rw-r--r--app/views/shared/issuable/form/_contribution.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/issuable/form/_contribution.html.haml b/app/views/shared/issuable/form/_contribution.html.haml
index bc9a1edc39c..a78231b37ce 100644
--- a/app/views/shared/issuable/form/_contribution.html.haml
+++ b/app/views/shared/issuable/form/_contribution.html.haml
@@ -15,6 +15,6 @@
= form.check_box :allow_collaboration, disabled: !issuable.can_allow_collaboration?(current_user), class: 'form-check-input'
= form.label :allow_collaboration, class: 'form-check-label' do
= _('Allow commits from members who can merge to the target branch.')
- = link_to 'About this feature', help_page_path('user/project/merge_requests/allow_collaboration')
+ = link_to 'About this feature', help_page_path('user/project/merge_requests/allow_collaboration'), target: '_blank', rel: 'noopener noreferrer nofollow'
.form-text.text-muted
= allow_collaboration_unavailable_reason(issuable)