Browse Source

[Fix][UI] Fix the problem that the failure strategy field in the time management form is multilingual. (#10169)

(cherry picked from commit dc61370f30)
3.0.0/version-upgrade
songjianet 2 years ago committed by Jiajie Zhong
parent
commit
bbf621cb05
  1. 7
      dolphinscheduler-ui/src/views/projects/workflow/definition/timing/use-table.ts

7
dolphinscheduler-ui/src/views/projects/workflow/definition/timing/use-table.ts

@ -106,6 +106,13 @@ export function useTable() {
{ {
title: t('project.workflow.failure_strategy'), title: t('project.workflow.failure_strategy'),
key: 'failureStrategy', 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 width: 140
}, },
{ {

Loading…
Cancel
Save