mirror of
https://github.com/certimate-go/certimate.git
synced 2026-07-20 21:01:41 +08:00
fix(ui): fix WorkflowList layout issue
This commit is contained in:
parent
bae8d618ea
commit
43f005aa00
@ -55,9 +55,11 @@ const WorkflowList = () => {
|
||||
render: (_, record) => (
|
||||
<div className="flex max-w-full flex-col gap-1 truncate">
|
||||
<Typography.Text ellipsis>{record.name || "\u00A0"}</Typography.Text>
|
||||
<Typography.Text ellipsis type="secondary">
|
||||
{record.description}
|
||||
</Typography.Text>
|
||||
{record.description && (
|
||||
<Typography.Text ellipsis type="secondary">
|
||||
{record.description}
|
||||
</Typography.Text>
|
||||
)}
|
||||
</div>
|
||||
),
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user