修改任务管理表格样式

This commit is contained in:
whyour 2021-04-04 20:00:41 +08:00
parent 9a57c27a4f
commit c4eb16b137

View File

@ -53,8 +53,22 @@ const Crontab = () => {
title: '任务',
dataIndex: 'command',
key: 'command',
width: '50%',
width: '40%',
align: 'center' as const,
render: (text: string, record: any) => {
return (
<span
style={{
textAlign: 'left',
width: '100%',
display: 'inline-block',
wordBreak: 'break-all',
}}
>
{text}
</span>
);
},
},
{
title: '任务定时',