This is an automated email from the ASF dual-hosted git repository.

zihaoxiang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 935117c18d [Improvement-17241][UI] workflow instance list index should 
display workflow instance id instead of serial number (#17242)
935117c18d is described below

commit 935117c18d70fd438d5f48a9ea52b36a102fa95f
Author: xiangzihao <[email protected]>
AuthorDate: Sat Jun 7 11:04:41 2025 +0800

    [Improvement-17241][UI] workflow instance list index should display 
workflow instance id instead of serial number (#17242)
---
 dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts 
b/dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts
index daae9a81e5..02b7ba8a74 100644
--- a/dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts
+++ b/dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts
@@ -82,8 +82,7 @@ export function useTable() {
       {
         title: '#',
         key: 'id',
-        ...COLUMN_WIDTH_CONFIG['index'],
-        render: (rowData: any, rowIndex: number) => rowIndex + 1
+        ...COLUMN_WIDTH_CONFIG['index']
       },
       {
         title: t('project.workflow.workflow_instance_name'),

Reply via email to