Browse Source

[Fix][UI] Fix the port in the datasource edit. (#11624)

3.1.0-release
songjianet 2 years ago committed by GitHub
parent
commit
8789895791
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-ui/src/views/datasource/list/detail.tsx

4
dolphinscheduler-ui/src/views/datasource/list/detail.tsx

@ -89,13 +89,13 @@ const DetailModal = defineComponent({
watch(
() => props.show,
async () => {
props.show && props.id && setFieldsValue(await queryById(props.id))
props.show &&
state.detailForm.type &&
changeType(
await changeType(
state.detailForm.type,
datasourceType[state.detailForm.type]
)
props.show && props.id && setFieldsValue(await queryById(props.id))
}
)

Loading…
Cancel
Save