mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-18 05:55:57 +08:00
fix: search not working in services table (#5353)
This commit is contained in:
parent
de571aa69a
commit
2fb5b16840
@ -33,10 +33,12 @@ export const getColumnSearchProps = (
|
|||||||
record: ServicesList,
|
record: ServicesList,
|
||||||
): boolean => {
|
): boolean => {
|
||||||
if (record[dataIndex]) {
|
if (record[dataIndex]) {
|
||||||
|
return (
|
||||||
record[dataIndex]
|
record[dataIndex]
|
||||||
?.toString()
|
?.toString()
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
.includes(value.toString().toLowerCase());
|
.includes(value.toString().toLowerCase()) || false
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user