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.
This commit is contained in:
wizardchen
2026-07-16 19:25:46 +08:00
committed by lyingbug
parent 48969b49f7
commit 79e8f3d894
@@ -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') });