Skip to content

Commit

Permalink
fix(a11y): fix unrelated html validation issue where uuids are used a…
Browse files Browse the repository at this point in the history
…s html IDs but HTML ids cant start with numbers
  • Loading branch information
andrewleith committed Sep 14, 2023
1 parent a4fe676 commit 9ba8c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/views/dashboard/template-statistics.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{{ spark_bar_field(item.count, most_used_template_count, id=item.template_id) }}
{% else %}
{% call field() %}
<span id='{{item.template_id}}' class="heading-small">
<span id='a{{item.template_id}}' class="heading-small">
{{ big_number(
item.count,
smallest=True
Expand Down

0 comments on commit 9ba8c98

Please sign in to comment.