From bdcad4250405c86c7298fa78444952921da8b338 Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Wed, 21 Sep 2022 17:18:53 +0800 Subject: [PATCH] fix: 1ffde85d3622fa716c4e4d8cdfae09e4fc365f01 --- web/js/uoj.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/js/uoj.js b/web/js/uoj.js index 7659154..fb4b9a0 100644 --- a/web/js/uoj.js +++ b/web/js/uoj.js @@ -127,7 +127,7 @@ function getUserLink(username, realname) { username = username.substr(1); } if (realname) { - text = text + ' (' + realname + ')'; + text = text + ' (' + realname + ')'; } return '' + text + ''; } @@ -140,7 +140,7 @@ function getUserSpan(username, realname) { username = username.substr(1); } if (realname) { - text = text + ' (' + realname + ')'; + text = text + ' (' + realname + ')'; } return '' + text + ''; }