From f2459ed1243d32884bf76a6014556dc338bc3a5f Mon Sep 17 00:00:00 2001 From: CaptainB Date: Tue, 12 Aug 2025 16:01:07 +0800 Subject: [PATCH] feat: add support for CUSTOM tool type in tool list retrieval --- ui/src/views/application-workflow/component/DropdownMenu.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/views/application-workflow/component/DropdownMenu.vue b/ui/src/views/application-workflow/component/DropdownMenu.vue index 3f6942163..adcc3a355 100644 --- a/ui/src/views/application-workflow/component/DropdownMenu.vue +++ b/ui/src/views/application-workflow/component/DropdownMenu.vue @@ -254,6 +254,7 @@ async function getToolList() { systemType: 'workspace', }).getToolList({ folder_id: folder.currentFolder?.id || user.getWorkspaceId(), + tool_type: 'CUSTOM' }) toolList.value = res.data?.tools || res.data || [] toolList.value = toolList.value?.filter((item: any) => item.is_active)