We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65b9549 commit d605f86Copy full SHA for d605f86
packages/x-data-grid-generator/src/hooks/useQuery.ts
@@ -100,7 +100,7 @@ const getFilteredRows = (
100
return rows.filter((row: GridRowModel) =>
101
filterModel.items.every((_, index) => {
102
const value = valueGetters[index](row);
103
- return filterFunctions[index] === null ? true : filterFunctions[index]({ value });
+ return filterFunctions[index] === null ? true : filterFunctions[index](value);
104
}),
105
);
106
};
0 commit comments