fix(web/contest): table-success
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Baoshuo Ren 2022-10-06 11:57:24 +08:00
parent a2a2a559fc
commit ebd4ee92f3
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

View File

@ -15,7 +15,7 @@
<?php for ($i = 0; $i < count($contest_problems); $i++): ?>
<tr>
<?php
echo $contest_problems[$i]['submission_id'] ? '<td class="success">' : '<td>';
echo $contest_problems[$i]['submission_id'] ? '<td class="table-success">' : '<td>';
echo chr(ord('A') + $i);
echo '</td>';
?>