fix: Improves the Login button for SAML/OIDC (#10885)

This commit is contained in:
Syed Ali Shahbaz 2023-08-22 17:39:50 +04:00 committed by GitHub
parent 01e1e82ced
commit 46605e049d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -872,6 +872,7 @@
"account_managed_by_identity_provider_description": "To change your email, password, enable two-factor authentication and more, please visit your {{provider}} account settings.",
"signin_with_google": "Sign in with Google",
"signin_with_saml": "Sign in with SAML",
"signin_with_saml_oidc": "Sign in with SAML/OIDC",
"you_will_need_to_generate": "You will need to generate an access token from your old scheduling tool.",
"import": "Import",
"import_from": "Import from",

View File

@ -63,7 +63,7 @@ export function SAMLLogin({ samlTenantID, samlProductID, setErrorMessage }: Prop
email,
});
}}>
{t("signin_with_saml")}
{t("signin_with_saml_oidc")}
</Button>
);
}