mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-23 08:36:32 +00:00
Fix two "aria-hidden" tags
This commit is contained in:
parent
917569ef0e
commit
e1c90314ad
2 changed files with 2 additions and 3 deletions
|
@ -41,7 +41,7 @@
|
||||||
</header>
|
</header>
|
||||||
<div class="column is-narrow">
|
<div class="column is-narrow">
|
||||||
<button type="button" class="button is-small" data-modal-open="{{ domain_modal }}">
|
<button type="button" class="button is-small" data-modal-open="{{ domain_modal }}">
|
||||||
<span class="icon icon-pencil m-0-mobile" aria-hidden="treu"></span>
|
<span class="icon icon-pencil m-0-mobile" aria-hidden="true"></span>
|
||||||
<span class="is-sr-only-mobile">{% trans "Set display name" %}</span>
|
<span class="is-sr-only-mobile">{% trans "Set display name" %}</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -103,4 +103,3 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
<form method="POST" action="{% url 'settings-themes-delete' theme.id %}">
|
<form method="POST" action="{% url 'settings-themes-delete' theme.id %}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<button type="submit" class="button is-danger is-light is-small">
|
<button type="submit" class="button is-danger is-light is-small">
|
||||||
<span class="icon icon-x" aria-hideen="true"></span>
|
<span class="icon icon-x" aria-hidden="true"></span>
|
||||||
<span>{% trans "Remove theme" %}</span>
|
<span>{% trans "Remove theme" %}</span>
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in a new issue