We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e73d765 commit 47783ddCopy full SHA for 47783dd
compliance-web/src/routes/_authenticated/admin/staff.tsx
@@ -137,6 +137,10 @@ export function Staff() {
137
header: "Position",
138
filterVariant: "multi-select",
139
filterSelectOptions: positionList,
140
+ filterFn: (row, id, filterValue) => {
141
+ if (!filterValue.length) return true;
142
+ return filterValue.includes(row.getValue(id));
143
+ },
144
},
145
{
146
accessorFn: (row) => row.supervisor?.name,
0 commit comments