Remove forward slash from br tags in pages partial (#9678)

This commit is contained in:
Julianna Tetreault 2020-08-07 17:51:28 -06:00 committed by GitHub
parent a191fd2ca7
commit ca7a1c1df3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,7 +48,7 @@
<span class="badge badge-<%= FeatureFlag.exist?(@page.feature_flag_name) ? "success" : "warning" %>">
<%= FeatureFlag.exist?(@page.feature_flag_name) ? "Present" : "Not Present" %>
</span>
</br>
<br>
<% if FeatureFlag.exist?(@page.feature_flag_name) %>
Access to this page is being guarded by the feature flag <code><%= @page.feature_flag_name %></code>.
<%= link_to "Modify flag here", "/admin/feature_flags/features/#{@page.feature_flag_name}" %>
@ -56,7 +56,7 @@
Everyone has access. Optionally guard access to this page by creating feature <code><%= @page.feature_flag_name %></code>
<%= link_to "here", "/admin/feature_flags/features" %>
<% end %>
</br>
<br>
</p>
</div>
<%= form.submit class: "btn btn-primary float-right" %>