fixed display value (#30159)
fixes: #30126 Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
parent
b1ba4f6174
commit
0bfadacffd
1 changed files with 3 additions and 1 deletions
|
@ -272,7 +272,9 @@ export const EvaluateScopes = ({ clientId, protocol }: EvaluateScopesProps) => {
|
||||||
placeholderText={t("scopeParameterPlaceholder")}
|
placeholderText={t("scopeParameterPlaceholder")}
|
||||||
>
|
>
|
||||||
{selectableScopes.map((option, index) => (
|
{selectableScopes.map((option, index) => (
|
||||||
<SelectOption key={index} value={option.name} />
|
<SelectOption key={index} value={option.name}>
|
||||||
|
{option.name}
|
||||||
|
</SelectOption>
|
||||||
))}
|
))}
|
||||||
</KeycloakSelect>
|
</KeycloakSelect>
|
||||||
</SplitItem>
|
</SplitItem>
|
||||||
|
|
Loading…
Reference in a new issue