Loading src/common/webview/duo_chat/duo_chat_handlers.ts +4 −0 Original line number Diff line number Diff line Loading @@ -106,7 +106,11 @@ export const openLink = async (params: OpenLinkParams | unknown) => { * extension executes the command that shows the dashboard. */ export const openMcpDashboard = async () => { try { await vscode.commands.executeCommand(PROGRAMMATIC_COMMANDS.WEBVIEW_ROOT_MCP_SHOW); } catch (e) { log.warn(`Failed to open MCP Dashboard: ${e.message}`); } }; export type WebviewId = typeof DUO_CHAT_WEBVIEW_ID | typeof AGENTIC_CHAT_WEBVIEW_ID; Loading Loading
src/common/webview/duo_chat/duo_chat_handlers.ts +4 −0 Original line number Diff line number Diff line Loading @@ -106,7 +106,11 @@ export const openLink = async (params: OpenLinkParams | unknown) => { * extension executes the command that shows the dashboard. */ export const openMcpDashboard = async () => { try { await vscode.commands.executeCommand(PROGRAMMATIC_COMMANDS.WEBVIEW_ROOT_MCP_SHOW); } catch (e) { log.warn(`Failed to open MCP Dashboard: ${e.message}`); } }; export type WebviewId = typeof DUO_CHAT_WEBVIEW_ID | typeof AGENTIC_CHAT_WEBVIEW_ID; Loading