From 6b785e8bc7e0cbba99765c7cc309efbd2dbc9655 Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Mon, 7 Nov 2022 22:02:56 +0800 Subject: [PATCH] fix(web): subtask score info --- web/app/libs/uoj-html-lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/libs/uoj-html-lib.php b/web/app/libs/uoj-html-lib.php index a5eff02..290c1ae 100644 --- a/web/app/libs/uoj-html-lib.php +++ b/web/app/libs/uoj-html-lib.php @@ -565,7 +565,7 @@ class JudgmentDetailsPrinter { if ($this->styler->show_score) { echo '
'; - echo ': ', $subtask_score; + echo ' ', $subtask_score, ' pts'; echo '
'; echo '
'; echo $this->styler->getTestInfoIcon($subtask_info);