Fix issue with groups search not sending the search input in the request (#23452)
Closes #23341
This commit is contained in:
parent
fa1747cb27
commit
48a0b3436d
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ export const GroupPickerDialog = ({
|
|||
first: `${first}`,
|
||||
max: `${max + 1}`,
|
||||
},
|
||||
isSearching ? null : { search: filter },
|
||||
isSearching ? { search: filter } : null,
|
||||
),
|
||||
);
|
||||
} else if (!navigation.map(({ id }) => id).includes(groupId)) {
|
||||
|
|
Loading…
Reference in a new issue