Skip to content

Commit

Permalink
use clientId instead of id to save client (keycloak#30523)
Browse files Browse the repository at this point in the history
fixes: keycloak#30436

Signed-off-by: Erik Jan de Wit <[email protected]>
  • Loading branch information
edewit authored Jun 20, 2024
1 parent 3f25635 commit 8d0e03a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions js/apps/admin-ui/src/components/client/ClientSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,7 @@ export const ClientSelect = ({
onFilter={(value) => setSearch(value)}
variant={variant}
isDisabled={isDisabled}
options={clients.map(({ id, clientId }) => ({
key: id!,
value: clientId!,
}))}
options={clients.map(({ clientId }) => clientId!)}
/>
);
};

0 comments on commit 8d0e03a

Please sign in to comment.