mirror of
https://github.com/keycloak/keycloak.git
synced 2026-05-07 15:41:29 -05:00
Backport to use clientId instead of id to save client (#30865)
Signed-off-by: Agnieszka Gancarczyk <agancarc@redhat.com> Co-authored-by: Agnieszka Gancarczyk <agancarc@redhat.com>
This commit is contained in:
@@ -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!)}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user