1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00

fix: project access checkboxes (#1201)

This commit is contained in:
Nuno Góis 2022-08-04 15:19:05 +01:00 committed by GitHub
parent a71f564f8a
commit 7f3a322809

View File

@ -321,6 +321,10 @@ export const ProjectAccessAssign = ({
return option.entity.name; return option.entity.name;
} }
}} }}
isOptionEqualToValue={(option, value) =>
option.type === value.type &&
option.entity.id === value.entity.id
}
renderInput={params => ( renderInput={params => (
<TextField <TextField
{...params} {...params}