Projet

Général

Profil

0001-wcs-add-a11y-label-to-tracking-code-input-40281.patch

Frédéric Péters, 29 février 2020 09:42

Télécharger (1,13 ko)

Voir les différences:

Subject: [PATCH] wcs: add a11y label to tracking code input (#40281)

 combo/apps/wcs/templates/combo/wcs/tracking_code_input.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/apps/wcs/templates/combo/wcs/tracking_code_input.html
19 19
  <div id="_cell_error_{{ cell.id }}" class="errornotice" style="display: none">
20 20
    {% trans "The tracking code could not been found." %}
21 21
  </div>
22
  <input required id="tracking-code" name="code" placeholder="{% trans 'ex: CNPHNTFB' %}"/>
22
  <input aria-label="{% trans "Tracking Code" %}" required id="tracking-code" name="code" placeholder="{% trans 'ex: CNPHNTFB' %}"/>
23 23
  <button>{% trans 'Submit' %}</button>
24 24
  <script>
25 25
  $(function() {
26
-