From 55c748d25b8fe0029a1b58f239e96a687ae3e32e Mon Sep 17 00:00:00 2001 From: Le Duy Thuc Date: Fri, 18 Oct 2024 10:45:09 +0000 Subject: [PATCH] fix ranking export --- templates/contest/ranking.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/contest/ranking.html b/templates/contest/ranking.html index eea4a81bd..76f0c31b1 100644 --- a/templates/contest/ranking.html +++ b/templates/contest/ranking.html @@ -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()));