Skip to content

Commit d1859a8

Browse files
authored
Replace &rdquo; entity with inline <q> element (#3636)
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q > Most modern browsers implement this by surrounding the text in quotation marks. Importantly, this uses the localized quotation glyph. In English, this is the same left/right quotation mark.
1 parent da48004 commit d1859a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/views/rails_admin/main/delete.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h4>
22
<%= t("admin.form.are_you_sure_you_want_to_delete_the_object", model_name: @abstract_model.pretty_name.downcase) %>
3-
&ldquo;<strong><%= @model_config.with(object: @object).object_label %></strong>&rdquo;
3+
<q><strong><%= @model_config.with(object: @object).object_label %></strong></q>
44
<%= t("admin.form.all_of_the_following_related_items_will_be_deleted") %>
55
</h4>
66
<ul>

0 commit comments

Comments
 (0)