Commit d20ed87b authored by Stan Hu's avatar Stan Hu

Fixing missing html_safe calls for pending list

parent 96aeeae1
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
.card.card-without-border .card.card-without-border
.d-flex.flex-column.flex-md-row.row-content-block.second-block .d-flex.flex-column.flex-md-row.row-content-block.second-block
%span.flex-grow-1 %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_tag group_group_members_path(@group), method: :get, class: 'form-inline user-search-form' do
.form-group .form-group
.position-relative.mr-md-2 .position-relative.mr-md-2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment