mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-22 19:28:41 +00:00
fix(web/contest/standings): problem link text-decoration-none
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
30dc0d7d70
commit
47e64d8a24
@ -1115,7 +1115,7 @@ function showStandings() {
|
||||
'<th style="width:' + (show_self_reviews ? '8' : '14') + 'em">'+uojLocale('username')+'</th>' +
|
||||
'<th style="width:5em">'+uojLocale('contests::total score')+'</th>' +
|
||||
$.map(problems, function(col, idx) {
|
||||
return '<th style="width:' + (show_self_reviews ? '10' : '8') + 'em;">' + '<a href="/contest/' + contest_id + '/problem/' + col + '">' + String.fromCharCode('A'.charCodeAt(0) + idx) + '</a>' + '</th>';
|
||||
return '<th style="width:' + (show_self_reviews ? '10' : '8') + 'em;">' + '<a href="/contest/' + contest_id + '/problem/' + col + '" class="text-decoration-none">' + String.fromCharCode('A'.charCodeAt(0) + idx) + '</a>' + '</th>';
|
||||
}).join('') +
|
||||
(show_self_reviews ? '<th style="width:16em;">赛后总结</th>' : '') +
|
||||
'</tr>',
|
||||
|
Loading…
Reference in New Issue
Block a user