Skip to content

Commit eec39ed

Browse files
authored
[Fix-17071][UI] correct datasource list id (#17072)
1 parent 321f73f commit eec39ed

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

dolphinscheduler-ui/src/views/datasource/list/use-columns.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ export function useColumns(onCallback: Function) {
4141
const getColumns = (): { columns: TableColumns; tableWidth: number } => {
4242
const columns = [
4343
{
44-
title: '#',
45-
key: 'index',
46-
render: (unused, rowIndex) => rowIndex + 1,
44+
title: 'id',
45+
key: 'id',
4746
...COLUMN_WIDTH_CONFIG['index']
4847
},
4948
{

0 commit comments

Comments
 (0)