From c84265a0a1dfc9982265035eb1abbed2671615c9 Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Mon, 7 Nov 2022 07:46:13 +0800 Subject: [PATCH] fix(web): subtask info item width --- web/app/libs/uoj-html-lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/libs/uoj-html-lib.php b/web/app/libs/uoj-html-lib.php index 29da793..a5eff02 100644 --- a/web/app/libs/uoj-html-lib.php +++ b/web/app/libs/uoj-html-lib.php @@ -579,13 +579,13 @@ class JudgmentDetailsPrinter { } if ($subtask_time >= 0) { - echo '
'; + echo '
'; echo ' ', $subtask_time, ' ms'; echo '
'; } if ($subtask_memory >= 0) { - echo '
'; + echo '
'; echo ' ', $subtask_memory, ' kB'; echo '
'; }