Skip to content

Commit 05c67cd

Browse files
meisterTvmcj
authored andcommitted
Remove scope attribute for td. (#2000)
It only applies for `th`, see https://www.w3schools.com/tags/att_scope.asp (cherry picked from commit 3572a8a)
1 parent a80fe49 commit 05c67cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

webapp/templates/jury/analysis/contest_overview.html.twig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ $(function() {
205205
{% set id=j.submitid %}
206206
<tr class='clickable-row' data-href="{{path('jury_submission', {'submitId': id}) }}">
207207
<th scope="row">{{ id }}</th>
208-
<td scope="row">{{ j.judgingid }}</td>
209-
<td scope="row">{{ j.submittime | printtime }}</td>
210-
<td scope="row">{{ j.num_judgings }}</td>
211-
<td scope="row">{{ j.timediff | number_format(2) }}s</td>
208+
<td>{{ j.judgingid }}</td>
209+
<td>{{ j.submittime | printtime }}</td>
210+
<td>{{ j.num_judgings }}</td>
211+
<td>{{ j.timediff | number_format(2) }}s</td>
212212
</tr>
213213
{% endfor %}
214214
</tbody>

0 commit comments

Comments
 (0)