Skip to content

Commit

Permalink
fixed display value (#30159)
Browse files Browse the repository at this point in the history
fixes: #30126

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
  • Loading branch information
edewit committed Jun 8, 2024
1 parent b1ba4f6 commit 0bfadac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/apps/admin-ui/src/clients/scopes/EvaluateScopes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 0bfadac

Please sign in to comment.