Browse Source

[fix][UI]Add render to projects-overview table (#13305)

Co-authored-by: Jinwen Lai <lai.jinwen@vpclub.cn>
3.2.0-release
imizao 2 years ago committed by GitHub
parent
commit
1edee6224c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui/src/views/projects/overview/use-table.ts

2
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' }
]

Loading…
Cancel
Save