summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-08-09 12:28:54 -0700
committerStan Hu <stanhu@gmail.com>2019-08-09 12:29:02 -0700
commitd20ed87bad1f3453ff2e874f65e226b8ebbe5849 (patch)
treeca128f0cc8fb223df31d39e1f8d6bde4e9f6e9b7
parent96aeeae18e1ca4decfc4955bc67640f299a2b0d6 (diff)
downloadgitlab-ce-d20ed87bad1f3453ff2e874f65e226b8ebbe5849.tar.gz
Fixing missing html_safe calls for pending list
-rw-r--r--app/views/groups/group_members/index.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/groups/group_members/index.html.haml b/app/views/groups/group_members/index.html.haml
index 2aae938ee27..2b49ed9c9ec 100644
--- a/app/views/groups/group_members/index.html.haml
+++ b/app/views/groups/group_members/index.html.haml
@@ -55,7 +55,7 @@
.card.card-without-border
.d-flex.flex-column.flex-md-row.row-content-block.second-block
%span.flex-grow-1
- = _("Members with pending access to %{strongStart}%{group_name}%{strongEnd}").html_safe % { group_name: @group.name, strongStart: '<strong>', strongEnd: '</strong>' }
+ = _("Members with pending access to %{strongStart}%{group_name}%{strongEnd}").html_safe % { group_name: @group.name, strongStart: '<strong>'.html_safe, strongEnd: '</strong>'.html_safe }
= form_tag group_group_members_path(@group), method: :get, class: 'form-inline user-search-form' do
.form-group
.position-relative.mr-md-2