Skip to content

Commit 8458f4e

Browse files
committed
adding aria label to input
Signed-off-by: Qamar Stationwala <[email protected]>
1 parent 0c4785a commit 8458f4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)