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; };