Browse Source

[Fix][UI] Fix the table header in the workflow instance. (#11487)

3.1.0-release
songjianet 2 years ago committed by GitHub
parent
commit
68316f68fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      dolphinscheduler-ui/src/locales/en_US/project.ts
  2. 1
      dolphinscheduler-ui/src/locales/zh_CN/project.ts
  3. 2
      dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts

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

@ -43,6 +43,7 @@ export default {
create_workflow: 'Create Workflow',
import_workflow: 'Import Workflow',
workflow_name: 'Workflow Name',
workflow_instance_name: 'Workflow Instance Name',
current_selection: 'Current Selection',
online: 'Online',
offline: 'Offline',

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

@ -43,6 +43,7 @@ export default {
create_workflow: '创建工作流',
import_workflow: '导入工作流',
workflow_name: '工作流名称',
workflow_instance_name: '工作流实例名称',
current_selection: '当前选择',
online: '已上线',
offline: '已下线',

2
dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts

@ -77,7 +77,7 @@ export function useTable() {
render: (rowData: any, rowIndex: number) => rowIndex + 1
},
{
title: t('project.workflow.workflow_name'),
title: t('project.workflow.workflow_instance_name'),
key: 'name',
...COLUMN_WIDTH_CONFIG['linkName'],
className: 'workflow-name',

Loading…
Cancel
Save