|
|
|
@ -67,6 +67,9 @@ export function useTable(onEdit: Function) {
|
|
|
|
|
title: t('project.task.task_name'), |
|
|
|
|
key: 'taskName', |
|
|
|
|
...COLUMN_WIDTH_CONFIG['linkName'], |
|
|
|
|
resizable: true, |
|
|
|
|
minWidth: 200, |
|
|
|
|
maxWidth: 600, |
|
|
|
|
render: (row: IRecord) => |
|
|
|
|
h( |
|
|
|
|
ButtonLink, |
|
|
|
@ -77,7 +80,9 @@ export function useTable(onEdit: Function) {
|
|
|
|
|
default: () => |
|
|
|
|
h( |
|
|
|
|
NEllipsis, |
|
|
|
|
COLUMN_WIDTH_CONFIG['linkEllipsis'], |
|
|
|
|
{ |
|
|
|
|
style: 'max-width: 580px;line-height: 1.5' |
|
|
|
|
}, |
|
|
|
|
() => row.taskName |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
@ -86,7 +91,10 @@ export function useTable(onEdit: Function) {
|
|
|
|
|
{ |
|
|
|
|
title: t('project.task.workflow_name'), |
|
|
|
|
key: 'processDefinitionName', |
|
|
|
|
...COLUMN_WIDTH_CONFIG['name'] |
|
|
|
|
...COLUMN_WIDTH_CONFIG['name'], |
|
|
|
|
resizable: true, |
|
|
|
|
minWidth: 200, |
|
|
|
|
maxWidth: 600 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: t('project.task.workflow_state'), |
|
|
|
|