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 a32a013 commit 58ed958Copy full SHA for 58ed958
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