Browse Source

[Fix][UI] fix bug where warn group name not display (#11429)

3.1.0-release
Devosend 2 years ago committed by GitHub
parent
commit
d02cf85b60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-startup-param.tsx

7
dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-startup-param.tsx

@ -43,10 +43,7 @@ export default defineComponent({
const getAlertGroupList = () => {
listAlertGroupById().then((res: any) => {
alertGroupListRef.value = res.map((item: any) => ({
label: item.groupName,
value: item.id
}))
alertGroupListRef.value = res
})
}
@ -83,7 +80,7 @@ export default defineComponent({
const o = _.filter(alertGroupListRef.value, (v) => v.id === id)
if (o && o.length) {
return o[0].code
return o[0].groupName
}
return '-'
})

Loading…
Cancel
Save