From 5503a7ca9d4d8c1a0fb5d07c234ba74b522bd1c3 Mon Sep 17 00:00:00 2001 From: gongzhiyong Date: Sun, 12 Apr 2026 21:54:15 +0800 Subject: [PATCH] fix: add web_search_deep to UI_NAME_MAP in ToolCallStatus and main.tsx Previously web_search_deep tool calls were missing from the UI_NAME_MAP, causing their search-result cards to render as standalone cards instead of being embedded within the ToolCallStatus component row. Co-Authored-By: Claude Sonnet 4.6 --- langgraph/src/components/ToolCallStatus.tsx | 1 + langgraph/src/main.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/langgraph/src/components/ToolCallStatus.tsx b/langgraph/src/components/ToolCallStatus.tsx index 511a979..aa796d5 100644 --- a/langgraph/src/components/ToolCallStatus.tsx +++ b/langgraph/src/components/ToolCallStatus.tsx @@ -260,6 +260,7 @@ export default function ToolCallStatus({ ticket_detail: "ticket-detail", web_search: "search-result", google_search: "search-result", + web_search_deep: "search-result", sandbox_run: "sandbox-result", }; diff --git a/langgraph/src/main.tsx b/langgraph/src/main.tsx index d2a7602..b28712c 100644 --- a/langgraph/src/main.tsx +++ b/langgraph/src/main.tsx @@ -817,6 +817,7 @@ function App() { ticket_detail: "ticket-detail", web_search: "search-result", google_search: "search-result", + web_search_deep: "search-result", sandbox_run: "sandbox-result", }; return tc.name && ui.name === nameMap[tc.name];