fixing PR comment:
https://github.com/keycloak/keycloak-admin-ui/pull/474#issuecomment-825417974
This commit is contained in:
parent
9395ce80a3
commit
2a02b38888
2 changed files with 7 additions and 6 deletions
|
@ -187,11 +187,12 @@ export const CapabilityConfig = ({
|
|||
label={t("serviceAccount")}
|
||||
id="kc-flow-service-account"
|
||||
name="serviceAccountsEnabled"
|
||||
isChecked={value}
|
||||
onChange={onChange}
|
||||
isDisabled={
|
||||
!clientAuthentication || clientAuthorization
|
||||
isChecked={
|
||||
value ||
|
||||
(clientAuthentication && clientAuthorization)
|
||||
}
|
||||
onChange={onChange}
|
||||
isDisabled={clientAuthorization}
|
||||
/>
|
||||
<HelpItem
|
||||
helpText="clients-help:serviceAccount"
|
||||
|
|
|
@ -103,8 +103,8 @@
|
|||
"authentication": "Authentication",
|
||||
"authenticationFlow": "Authentication flow",
|
||||
"standardFlow": "Standard flow",
|
||||
"directAccess": "Direct access",
|
||||
"serviceAccount": "Service account roles",
|
||||
"directAccess": "Direct access grants",
|
||||
"serviceAccount": "Service account",
|
||||
"enableServiceAccount": "Enable service account roles",
|
||||
"assignRolesTo": "Assign roles to {{client}} account",
|
||||
"searchByRoleName": "Search by role name",
|
||||
|
|
Loading…
Reference in a new issue