Skip to content

Commit aee53aa

Browse files
authored
Prefer literal over HTML entity (#1346)
Literals are easier to read when viewing the source (don't need to memorize code points). The files are encoded in UTF-8 and all modern browser support UTF-8, so it is compatible.
1 parent 5754260 commit aee53aa

File tree

1 file changed

+1
-1
lines changed
  • debug_toolbar/templates/debug_toolbar

1 file changed

+1
-1
lines changed

debug_toolbar/templates/debug_toolbar/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{{ toolbar.config.ROOT_TAG_EXTRA_ATTRS|safe }}>
99
<div class="djdt-hidden" id="djDebugToolbar">
1010
<ul id="djDebugPanelList">
11-
<li><a id="djHideToolBarButton" href="#" title="{% trans "Hide toolbar" %}">{% trans "Hide" %} &#187;</a></li>
11+
<li><a id="djHideToolBarButton" href="#" title="{% trans "Hide toolbar" %}">{% trans "Hide" %} »</a></li>
1212
{% for panel in toolbar.panels %}
1313
{% include "debug_toolbar/includes/panel_button.html" %}
1414
{% endfor %}

0 commit comments

Comments
 (0)