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 = [ - { title: '#', key: 'index' }, + { title: '#', key: 'index', render: (row, index) => index + 1 }, { title: t('home.number'), key: 'number' }, { title: t('home.state'), key: 'state' } ]