diff --git a/dolphinscheduler-ui/src/views/projects/workflow/relation/index.tsx b/dolphinscheduler-ui/src/views/projects/workflow/relation/index.tsx index 6da6326adf..b0557ad053 100644 --- a/dolphinscheduler-ui/src/views/projects/workflow/relation/index.tsx +++ b/dolphinscheduler-ui/src/views/projects/workflow/relation/index.tsx @@ -15,10 +15,10 @@ * limitations under the License. */ -import { defineComponent, onMounted, toRefs, watch } from 'vue' +import { defineComponent, onMounted, toRefs, watch, VNode, h } from 'vue' import { useI18n } from 'vue-i18n' import { useRoute } from 'vue-router' -import { NSelect, NButton, NIcon, NSpace, NTooltip } from 'naive-ui' +import { NSelect, NButton, NIcon, NSpace, NTooltip, SelectOption } from 'naive-ui' import { ReloadOutlined, EyeOutlined } from '@vicons/antd' import { useRelation } from './use-relation' import Card from '@/components/card' @@ -48,6 +48,12 @@ const workflowRelation = defineComponent({ : getWorkflowList(Number(route.params.projectCode)) } + const renderOption = ({ node, option }: { node: VNode; option: SelectOption }) => + h(NTooltip, null, { + trigger: () => node, + default: () => option.label + }) + watch( () => [variables.workflow, variables.labelShow, locale.value], () => { @@ -55,7 +61,7 @@ const workflowRelation = defineComponent({ } ) - return { t, handleResetDate, ...toRefs(variables) } + return { t, handleResetDate, ...toRefs(variables), renderOption } }, render() { const { t, handleResetDate } = this @@ -86,10 +92,12 @@ const workflowRelation = defineComponent({ {{