Skip to content

Commit

Permalink
fix ranking export
Browse files Browse the repository at this point in the history
  • Loading branch information
leduythuccs committed Oct 18, 2024
1 parent 19dc954 commit 55c748d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/contest/ranking.html
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@
} else if ($col.hasClass('user-name')) {
// Username and Full name
row_data.push(clean_text($col.find('.rating').first().text()));
row_data.push(clean_text($col.find('.personal-info').first().text()));
row_data.push(clean_text($($col.find('.personal-info')[1]).text()));
} else {
// Point or rank
row_data.push(clean_text($col.ignore('.solving-time').text()));
Expand Down

0 comments on commit 55c748d

Please sign in to comment.