mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
fix(edge/updates): allow group search [EE-6179] (#10408)
This commit is contained in:
parent
5a73605df2
commit
57c45838d5
7 changed files with 42 additions and 27 deletions
|
@ -273,7 +273,9 @@ export function defaultGlobalFilterFn<D, TFilter extends { search: string }>(
|
|||
}
|
||||
|
||||
if (Array.isArray(value)) {
|
||||
return value.some((item) => item.toLowerCase().includes(filterValueLower));
|
||||
return value.some((item) =>
|
||||
item.toString().toLowerCase().includes(filterValueLower)
|
||||
);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue