fixed display value (#30159)

fixes: #30126

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
Erik Jan de Wit 2024-06-08 11:34:38 +02:00 committed by GitHub
parent b1ba4f6174
commit 0bfadacffd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -272,7 +272,9 @@ export const EvaluateScopes = ({ clientId, protocol }: EvaluateScopesProps) => {
placeholderText={t("scopeParameterPlaceholder")}
>
{selectableScopes.map((option, index) => (
<SelectOption key={index} value={option.name} />
<SelectOption key={index} value={option.name}>
{option.name}
</SelectOption>
))}
</KeycloakSelect>
</SplitItem>