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

This commit is contained in:
songjianet 2022-08-15 21:07:20 +08:00 committed by GitHub
parent 4d063192cd
commit 68316f68fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -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',

View File

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

View File

@ -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',