From 79e8f3d894a8f993dad466779d98780e29c8debc Mon Sep 17 00:00:00 2001 From: wizardchen Date: Thu, 16 Jul 2026 19:25:46 +0800 Subject: [PATCH] fix(agent): use attach icon for attachment upload nav item Align the capability extension sidebar icon with chat attachment upload after the section was renamed from image-only to attachment upload. --- frontend/src/views/agent/AgentEditorModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/agent/AgentEditorModal.vue b/frontend/src/views/agent/AgentEditorModal.vue index 28371e7d5..64c670e56 100644 --- a/frontend/src/views/agent/AgentEditorModal.vue +++ b/frontend/src/views/agent/AgentEditorModal.vue @@ -2213,7 +2213,7 @@ const navItems = computed(() => { items.push({ key: 'retrieval', icon: 'search', label: t('agent.editor.retrievalStrategy') }); } items.push({ key: 'websearch', icon: 'internet', label: t('agent.editor.webSearchConfig') }); - items.push({ key: 'multimodal', icon: 'image', label: t('agentEditor.imageUpload.navLabel') }); + items.push({ key: 'multimodal', icon: 'attach', label: t('agentEditor.imageUpload.navLabel') }); // Agent 模式能力 if (isAgentMode.value) { items.push({ key: 'tools', icon: 'tools', label: t('agent.editor.toolsConfig') });