From ea9e9165b636f853cefe237338b1019e93c2d83e Mon Sep 17 00:00:00 2001 From: yoan <536464346@qq.com> Date: Thu, 24 Oct 2024 21:03:57 +0800 Subject: [PATCH] Fix the issue where log information is not displayed. --- ui/src/pages/history/History.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/src/pages/history/History.tsx b/ui/src/pages/history/History.tsx index 36acf2b0..24de0c7b 100644 --- a/ui/src/pages/history/History.tsx +++ b/ui/src/pages/history/History.tsx @@ -150,6 +150,10 @@ const History = () => {
[{item.time}]
{item.message}
+ {item.info && + item.info.map((info: string) => { + return
{info}
; + })} {item.error &&
{item.error}
} );