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

wenjun 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 f0f12c9fdf Fix missing Kyuubi type in UI (#15051)
f0f12c9fdf is described below

commit f0f12c9fdf53dcd7977f7b804dff764e41912730
Author: He Zhao <[email protected]>
AuthorDate: Sat Oct 21 14:17:45 2023 +0800

    Fix missing Kyuubi type in UI (#15051)
---
 dolphinscheduler-ui/src/service/modules/data-source/types.ts | 2 ++
 dolphinscheduler-ui/src/views/datasource/list/use-form.ts    | 5 +++++
 2 files changed, 7 insertions(+)

diff --git a/dolphinscheduler-ui/src/service/modules/data-source/types.ts 
b/dolphinscheduler-ui/src/service/modules/data-source/types.ts
index a01618e4b3..59173151af 100644
--- a/dolphinscheduler-ui/src/service/modules/data-source/types.ts
+++ b/dolphinscheduler-ui/src/service/modules/data-source/types.ts
@@ -38,6 +38,7 @@ type IDataBase =
   | 'SNOWFLAKE'
   | 'HANA'
   | 'DORIS'
+  | 'KYUUBI'
 
 type IDataBaseLabel =
   | 'MYSQL'
@@ -57,6 +58,7 @@ type IDataBaseLabel =
   | 'DAMENG'
   | 'OCEANBASE'
   | 'SSH'
+  | 'KYUUBI'
 
 interface IDataSource {
   id?: number
diff --git a/dolphinscheduler-ui/src/views/datasource/list/use-form.ts 
b/dolphinscheduler-ui/src/views/datasource/list/use-form.ts
index d7d8ccb2b5..b0585e415b 100644
--- a/dolphinscheduler-ui/src/views/datasource/list/use-form.ts
+++ b/dolphinscheduler-ui/src/views/datasource/list/use-form.ts
@@ -312,6 +312,11 @@ export const datasourceType: IDataBaseOptionKeys = {
     label: 'HIVE/IMPALA',
     defaultPort: 10000
   },
+  KYUUBI: {
+    value: 'KYUUBI',
+    label: 'KYUUBI',
+    defaultPort: 10000
+  },
   SPARK: {
     value: 'SPARK',
     label: 'SPARK',

Reply via email to