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

liudongkai 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 1edee6224c [fix][UI]Add render to projects-overview table (#13305)
1edee6224c is described below

commit 1edee6224c2bc4bf5a1be175e440015a873aa576
Author: imizao <[email protected]>
AuthorDate: Sat Jan 7 22:56:54 2023 +0800

    [fix][UI]Add render to projects-overview table (#13305)
    
    Co-authored-by: Jinwen Lai <[email protected]>
---
 dolphinscheduler-ui/src/views/projects/overview/use-table.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui/src/views/projects/overview/use-table.ts 
b/dolphinscheduler-ui/src/views/projects/overview/use-table.ts
index 1c16f4aab3..da4fb577a0 100644
--- a/dolphinscheduler-ui/src/views/projects/overview/use-table.ts
+++ b/dolphinscheduler-ui/src/views/projects/overview/use-table.ts
@@ -22,7 +22,7 @@ export function useTable() {
   const { t } = useI18n()
 
   const columnsRef: TableColumns<any> = [
-    { title: '#', key: 'index' },
+    { title: '#', key: 'index', render: (row, index) => index + 1 },
     { title: t('home.number'), key: 'number' },
     { title: t('home.state'), key: 'state' }
   ]

Reply via email to