From 86ce75ea3970e41ed7f0fcca75095c26b2430b4b Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Mon, 30 Mar 2026 22:54:43 +0530 Subject: [PATCH] feat: add Dropbox connector to display name mappings in UI and utility functions --- surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx | 1 + surfsense_web/lib/connectors/utils.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx b/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx index e4194c863..d414f13c9 100644 --- a/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx +++ b/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx @@ -111,6 +111,7 @@ function getConnectorTypeDisplayName(connectorType: string): string { CIRCLEBACK_CONNECTOR: "Circleback", MCP_CONNECTOR: "MCP", OBSIDIAN_CONNECTOR: "Obsidian", + DROPBOX_CONNECTOR: "Dropbox", TAVILY_API: "Tavily", SEARXNG_API: "SearXNG", LINKUP_API: "Linkup", diff --git a/surfsense_web/lib/connectors/utils.ts b/surfsense_web/lib/connectors/utils.ts index 623a7b862..90f7f5d21 100644 --- a/surfsense_web/lib/connectors/utils.ts +++ b/surfsense_web/lib/connectors/utils.ts @@ -30,6 +30,7 @@ export const getConnectorTypeDisplay = (type: string): string => { YOUTUBE_CONNECTOR: "YouTube", CIRCLEBACK_CONNECTOR: "Circleback", OBSIDIAN_CONNECTOR: "Obsidian", + DROPBOX_CONNECTOR: "Dropbox", MCP_CONNECTOR: "MCP Server", }; return typeMap[type] || type;