未验证 提交 dc61370f 编写于 作者: S songjianet 提交者: GitHub

[Fix][UI] Fix the problem that the failure strategy field in the time...

[Fix][UI] Fix the problem that the failure strategy field in the time management form is multilingual. (#10169)
上级 13a83e50
......@@ -106,6 +106,13 @@ export function useTable() {
{
title: t('project.workflow.failure_strategy'),
key: 'failureStrategy',
render: (row: any) => {
if (row.failureStrategy === 'CONTINUE') {
return t('project.workflow.continue')
} else if (row.failureStrategy === 'END') {
return t('project.workflow.end')
}
},
width: 140
},
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册