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 eec39ed15e [Fix-17071][UI] correct datasource list id (#17072)
eec39ed15e is described below
commit eec39ed15e870fa35e5779faa22b8ddb0198fa98
Author: Jarvis <[email protected]>
AuthorDate: Thu Mar 20 15:26:41 2025 +0800
[Fix-17071][UI] correct datasource list id (#17072)
---
dolphinscheduler-ui/src/views/datasource/list/use-columns.ts | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/dolphinscheduler-ui/src/views/datasource/list/use-columns.ts
b/dolphinscheduler-ui/src/views/datasource/list/use-columns.ts
index af499afe0e..2bf089ad98 100644
--- a/dolphinscheduler-ui/src/views/datasource/list/use-columns.ts
+++ b/dolphinscheduler-ui/src/views/datasource/list/use-columns.ts
@@ -41,9 +41,8 @@ export function useColumns(onCallback: Function) {
const getColumns = (): { columns: TableColumns; tableWidth: number } => {
const columns = [
{
- title: '#',
- key: 'index',
- render: (unused, rowIndex) => rowIndex + 1,
+ title: 'id',
+ key: 'id',
...COLUMN_WIDTH_CONFIG['index']
},
{