Browse Source

[Fix][UI] Fix the udf function echoed error in the sql task. (#9616)

3.0.0/version-upgrade
Amy0104 2 years ago committed by GitHub
parent
commit
a1df0ee99c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-udfs.ts

2
dolphinscheduler-ui-next/src/views/projects/task/components/node/fields/use-udfs.ts

@ -30,7 +30,7 @@ export function useUdfs(model: { [field: string]: any }): IJsonItem {
loading.value = true
const res = await queryUdfFuncList({ type: model.type })
options.value = res.map((udf: { id: number; funcName: string }) => ({
value: udf.id,
value: String(udf.id),
label: udf.funcName
}))
loading.value = false

Loading…
Cancel
Save