Added missing html_safe on text messages.
This commit is contained in:
parent
79fdfec51f
commit
d9d6b776d7
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
|||
%h5.prepend-top-0
|
||||
= _("Git strategy for pipelines")
|
||||
%p
|
||||
= _("Choose between <code>clone</code> or <code>fetch</code> to get the recent application code")
|
||||
= _("Choose between <code>clone</code> or <code>fetch</code> to get the recent application code").html_safe
|
||||
= link_to icon('question-circle'), help_page_path('user/project/pipelines/settings', anchor: 'git-strategy'), target: '_blank'
|
||||
.form-check
|
||||
= f.radio_button :build_allow_git_fetch, 'false', { class: 'form-check-input' }
|
||||
|
@ -47,7 +47,7 @@
|
|||
= f.label :ci_config_path, _('Custom CI config path'), class: 'label-bold'
|
||||
= f.text_field :ci_config_path, class: 'form-control', placeholder: '.gitlab-ci.yml'
|
||||
%p.form-text.text-muted
|
||||
= _("The path to CI config file. Defaults to <code>.gitlab-ci.yml</code>")
|
||||
= _("The path to CI config file. Defaults to <code>.gitlab-ci.yml</code>").html_safe
|
||||
= link_to icon('question-circle'), help_page_path('user/project/pipelines/settings', anchor: 'custom-ci-config-path'), target: '_blank'
|
||||
|
||||
%hr
|
||||
|
|
Loading…
Reference in a new issue