From dea66c4eb7d64820580e76429d505fcff4940e8d Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:00:33 +0530 Subject: [PATCH] fix: update connector name display logic in IndexingConfigurationView for better readability --- .../views/indexing-configuration-view.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/surfsense_web/components/assistant-ui/connector-popup/connector-configs/views/indexing-configuration-view.tsx b/surfsense_web/components/assistant-ui/connector-popup/connector-configs/views/indexing-configuration-view.tsx index b885f35da..2ab25ae95 100644 --- a/surfsense_web/components/assistant-ui/connector-popup/connector-configs/views/indexing-configuration-view.tsx +++ b/surfsense_web/components/assistant-ui/connector-popup/connector-configs/views/indexing-configuration-view.tsx @@ -119,14 +119,16 @@ export const IndexingConfigurationView: FC = ({
-
- - {getConnectorTypeDisplay(connector?.connector_type || "")} Connected ! - {" "} +
+ + {getConnectorTypeDisplay(connector?.connector_type || "")} Connected ! + + {connector?.name?.includes(" - ") && ( - {getConnectorDisplayName(connector?.name || "")} + {getConnectorDisplayName(connector.name)} -
+ )} +

Configure when to start syncing your data