Merge branch 'gt-open-visibility-help-link-in-a-new-tab' into 'master'

Open snippets visibility help link in a new tab

Closes #61911

See merge request gitlab-org/gitlab-ce!28603
This commit is contained in:
Phil Hughes 2019-05-31 07:41:38 +00:00
commit d8058a0a98
2 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,6 @@
.form-group.row
.col-sm-2.col-form-label
= _('Visibility level')
= link_to icon('question-circle'), help_page_path("public_access/public_access")
= link_to icon('question-circle'), help_page_path("public_access/public_access"), target: '_blank'
.col-sm-10
= render 'shared/visibility_level', f: f, visibility_level: visibility_level, can_change_visibility_level: can_change_visibility_level, form_model: form_model, with_label: with_label

View file

@ -0,0 +1,5 @@
---
title: Open visibility help link in a new tab
merge_request: 28603
author: George Tsiolis
type: fixed