From c8194e9abb038319e6ade89f3db2b12d624ca94b Mon Sep 17 00:00:00 2001 From: Vikrant Gupta Date: Tue, 21 Oct 2025 16:55:44 +0530 Subject: [PATCH] fix(tokenizer): update the authn domains tooltips (#9388) --- .../CreateEdit/Providers/AuthnGoogleAuth.tsx | 10 +++++++++- .../AuthDomain/CreateEdit/Providers/AuthnOIDC.tsx | 9 ++++++++- .../AuthDomain/CreateEdit/Providers/AuthnSAML.tsx | 13 ++++++++++--- 3 files changed, 27 insertions(+), 5 deletions(-) diff --git a/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnGoogleAuth.tsx b/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnGoogleAuth.tsx index 13171423c8..5f127254f2 100644 --- a/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnGoogleAuth.tsx +++ b/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnGoogleAuth.tsx @@ -28,7 +28,15 @@ function ConfigureGoogleAuthAuthnProvider({ - + diff --git a/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnOIDC.tsx b/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnOIDC.tsx index 3bcbd553bb..a6fa439889 100644 --- a/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnOIDC.tsx +++ b/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnOIDC.tsx @@ -16,7 +16,14 @@ function ConfigureOIDCAuthnProvider({ - + diff --git a/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnSAML.tsx b/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnSAML.tsx index 5ef8344b55..be09109817 100644 --- a/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnSAML.tsx +++ b/frontend/src/container/OrganizationSettings/AuthDomain/CreateEdit/Providers/AuthnSAML.tsx @@ -16,7 +16,14 @@ function ConfigureSAMLAuthnProvider({ - + @@ -24,7 +31,7 @@ function ConfigureSAMLAuthnProvider({ label="SAML ACS URL" name={['samlConfig', 'samlIdp']} tooltip={{ - title: `The entityID of the SAML identity provider. It can typically be found in the EntityID attribute of the EntityDescriptor element in the SAML metadata of the identity provider. Example: `, + title: `The SSO endpoint of the SAML identity provider. It can typically be found in the SingleSignOnService element in the SAML metadata of the identity provider. Example: `, }} > @@ -34,7 +41,7 @@ function ConfigureSAMLAuthnProvider({ label="SAML Entity ID" name={['samlConfig', 'samlEntity']} tooltip={{ - title: `The SSO endpoint of the SAML identity provider. It can typically be found in the SingleSignOnService element in the SAML metadata of the identity provider. Example: `, + title: `The entityID of the SAML identity provider. It can typically be found in the EntityID attribute of the EntityDescriptor element in the SAML metadata of the identity provider. Example: `, }} >