fix issues

pull/342/head
vapao 2021-07-06 00:24:23 +08:00
parent ae53e5cc8e
commit 4c9975202b
1 changed files with 2 additions and 2 deletions

View File

@ -101,9 +101,9 @@ class ComTable extends React.Component {
<Table.Column title="频率" dataIndex="rate" render={value => `${value}分钟`}/>
<Table.Column title="状态" render={info => {
if (info.is_active) {
return <Tag color="blue">启用</Tag>
return <Tag color="blue">激活</Tag>
} else {
return <Tag color="red">已禁用</Tag>
return <Tag color="red">未激活</Tag>
}
}}/>
<Table.Column title="更新于" dataIndex="latest_run_time_alias"