mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-10 14:39:50 +00:00
Fix the issue where log information is not displayed.
This commit is contained in:
parent
51abe8de56
commit
ea9e9165b6
@ -150,6 +150,10 @@ const History = () => {
|
|||||||
<div>[{item.time}]</div>
|
<div>[{item.time}]</div>
|
||||||
<div className="ml-2">{item.message}</div>
|
<div className="ml-2">{item.message}</div>
|
||||||
</div>
|
</div>
|
||||||
|
{item.info &&
|
||||||
|
item.info.map((info: string) => {
|
||||||
|
return <div className="mt-1 text-green-600 break-words">{info}</div>;
|
||||||
|
})}
|
||||||
{item.error && <div className="mt-1 text-red-600">{item.error}</div>}
|
{item.error && <div className="mt-1 text-red-600">{item.error}</div>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user