Browse Source

[Fix-16629][UI][Workflow Instance] fix status display error

dev
小可耐 3 months ago committed by GitHub
parent
commit
f697665854
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      dolphinscheduler-ui/src/common/common.ts
  2. 1
      dolphinscheduler-ui/src/locales/en_US/project.ts
  3. 1
      dolphinscheduler-ui/src/locales/zh_CN/project.ts

2
dolphinscheduler-ui/src/common/common.ts

@ -395,7 +395,7 @@ export const workflowExecutionState = (
},
WAIT_TO_RUN: {
id: 18,
desc: `${t('project.overview.wait_to_run')}`,
desc: `${t('project.workflow.wait_to_run')}`,
color: '#5102ce',
icon: HourglassOutlined,
isSpin: false,

1
dolphinscheduler-ui/src/locales/en_US/project.ts

@ -233,6 +233,7 @@ export default {
'There is not any workflows. Please create a workflow, and then visit this page again.',
ready_to_block: 'Ready to block',
block: 'Block',
wait_to_run: 'Wait to run',
want_to_set_timing: 'Would you like to set the workflow timing?',
confirm_to_online: 'Confirm to make the workflow online?',
confirm_to_offline: 'Confirm to make the workflow offline?',

1
dolphinscheduler-ui/src/locales/zh_CN/project.ts

@ -231,6 +231,7 @@ export default {
'目前没有任何工作流,请先创建工作流,再访问该页面',
ready_to_block: '准备锁定',
block: '锁定',
wait_to_run: '等待执行',
want_to_set_timing: '现在想去配置该工作流定时?',
confirm_to_online: '是否确定上线该工作流?',
confirm_to_offline: '是否确定下线该工作流?',

Loading…
Cancel
Save