From 85f6472c7432ff75f3835e930bc0f805c44776c3 Mon Sep 17 00:00:00 2001 From: zhangzhanwei Date: Wed, 6 May 2026 10:00:20 +0800 Subject: [PATCH] fix: Application relation mapping title --- ui/src/components/resource_mapping/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/components/resource_mapping/index.vue b/ui/src/components/resource_mapping/index.vue index e14537fcdd5..d25619cabea 100644 --- a/ui/src/components/resource_mapping/index.vue +++ b/ui/src/components/resource_mapping/index.vue @@ -504,6 +504,8 @@ const currentSourceName = computed(() => { return t('views.tool.title') } else if (currentSourceType.value === 'MODEL') { return t('views.model.title') + } else if (currentSourceType.value === 'APPLICATION') { + return t('views.application.title') } else { return t('views.knowledge.title') }