Browse Source

Fix missing Kyuubi type in UI (#15051)

augit-log
He Zhao 7 months ago committed by GitHub
parent
commit
f0f12c9fdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui/src/service/modules/data-source/types.ts
  2. 5
      dolphinscheduler-ui/src/views/datasource/list/use-form.ts

2
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

5
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',

Loading…
Cancel
Save