From ce4adccc804ea9dbbc1bf8271df672e7d1f7da26 Mon Sep 17 00:00:00 2001 From: carlosmonastyrski Date: Tue, 18 Mar 2025 19:07:11 -0300 Subject: [PATCH] Add Windmill custom api url domain to connection details page --- .../components/IntegrationConnectionSection.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/pages/secret-manager/IntegrationsDetailsByIDPage/components/IntegrationConnectionSection.tsx b/frontend/src/pages/secret-manager/IntegrationsDetailsByIDPage/components/IntegrationConnectionSection.tsx index 8829c8d70..2815eb8ed 100644 --- a/frontend/src/pages/secret-manager/IntegrationsDetailsByIDPage/components/IntegrationConnectionSection.tsx +++ b/frontend/src/pages/secret-manager/IntegrationsDetailsByIDPage/components/IntegrationConnectionSection.tsx @@ -192,6 +192,15 @@ export const IntegrationConnectionSection = ({ integration }: Props) => { ); } + if (integration.integration === "windmill" && integration.url) { + return ( +
+ +
{integration.url}
+
+ ); + } + return null; };