fix: add web_search_deep to UI_NAME_MAP in ToolCallStatus and main.tsx
Deploy LangGraph Server to Azure Web App / build-and-deploy (push) Failing after 17s
Deploy LangGraph UI to Azure Static Web Apps / build-and-deploy (push) Failing after 42s

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 <noreply@anthropic.com>
This commit is contained in:
gongzhiyong
2026-04-12 21:54:15 +08:00
co-authored by Claude Sonnet 4.6
parent bb1885eca1
commit 5503a7ca9d
2 changed files with 2 additions and 0 deletions
@@ -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",
};
+1
View File
@@ -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];