added missing help text on tokens tab (#30686)
Signed-off-by: Agnieszka Gancarczyk <agancarc@redhat.com> Co-authored-by: Agnieszka Gancarczyk <agancarc@redhat.com>
This commit is contained in:
parent
62fbd3aed0
commit
b77a69ed18
2 changed files with 29 additions and 1 deletions
|
@ -3204,4 +3204,8 @@ noResultsFound=No results found
|
|||
linkedOrganization=Linked organization
|
||||
send=Send
|
||||
redirectWhenEmailMatches=Redirect when email domain matches
|
||||
redirectWhenEmailMatchesHelp=Automatically redirect the user to this identity provider when the email domain matches the domain
|
||||
redirectWhenEmailMatchesHelp=Automatically redirect the user to this identity provider when the email domain matches the domain
|
||||
emailVerificationHelp=Specifies independent timeout for email verification.
|
||||
idpAccountEmailVerificationHelp=Specifies independent timeout for IdP account email verification.
|
||||
forgotPasswordHelp=Specifies independent timeout for forgot password.
|
||||
executeActionsHelp=Specifies independent timeout for execute actions.
|
|
@ -517,6 +517,12 @@ export const RealmSettingsTokensTab = ({
|
|||
label={t("emailVerification")}
|
||||
fieldId="emailVerification"
|
||||
id="email-verification"
|
||||
labelIcon={
|
||||
<HelpItem
|
||||
helpText={t("emailVerificationHelp")}
|
||||
fieldLabelId="emailVerification"
|
||||
/>
|
||||
}
|
||||
>
|
||||
<Controller
|
||||
name={`attributes.${beerify(
|
||||
|
@ -539,6 +545,12 @@ export const RealmSettingsTokensTab = ({
|
|||
label={t("idpAccountEmailVerification")}
|
||||
fieldId="idpAccountEmailVerification"
|
||||
id="idp-acct-label"
|
||||
labelIcon={
|
||||
<HelpItem
|
||||
helpText={t("idpAccountEmailVerificationHelp")}
|
||||
fieldLabelId="idpAccountEmailVerification"
|
||||
/>
|
||||
}
|
||||
>
|
||||
<Controller
|
||||
name={`attributes.${beerify(
|
||||
|
@ -561,6 +573,12 @@ export const RealmSettingsTokensTab = ({
|
|||
label={t("forgotPassword")}
|
||||
fieldId="forgotPassword"
|
||||
id="forgot-password-label"
|
||||
labelIcon={
|
||||
<HelpItem
|
||||
helpText={t("forgotPasswordHelp")}
|
||||
fieldLabelId="forgotPassword"
|
||||
/>
|
||||
}
|
||||
>
|
||||
<Controller
|
||||
name={`attributes.${beerify(
|
||||
|
@ -583,6 +601,12 @@ export const RealmSettingsTokensTab = ({
|
|||
label={t("executeActions")}
|
||||
fieldId="executeActions"
|
||||
id="execute-actions"
|
||||
labelIcon={
|
||||
<HelpItem
|
||||
helpText={t("executeActionsHelp")}
|
||||
fieldLabelId="executeActions"
|
||||
/>
|
||||
}
|
||||
>
|
||||
<Controller
|
||||
name={`attributes.${beerify(
|
||||
|
|
Loading…
Reference in a new issue