Skip to content

Commit 4349e95

Browse files
committed
adding aria label to input
1 parent 6ea7f25 commit 4349e95

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎ordering/templates/index.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
<tbody>
173173
{% for row in table_content %}
174174
<tr class="episode {{ series_map[row.series].id }}">
175-
<td><input type='checkbox' data-episodeId="{{ row.series }} {{ row.episode_id }}" onclick="(event) => bookmarkEpisode(event)"/></td>
175+
<td><input aria-label="bookmark for {{ row.series }} {{ row.episode_id }}" type='checkbox' data-episodeId="{{ row.series }} {{ row.episode_id }}" onclick="(event) => bookmarkEpisode(event)"/></td>
176176
<td>{{ row.row_number }}</td>
177177
<td>{{ row.series }}</td>
178178
<td>{{ row.episode_id }}</td>

0 commit comments

Comments
 (0)