mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
parent
5dadf1b48f
commit
f17dd6193f
1 changed files with 3 additions and 1 deletions
|
|
@ -67,7 +67,9 @@ export const ListsTable = (props: IProps) => {
|
|||
accessor: "tags",
|
||||
filterable: true,
|
||||
filterMethod: (f: any, r: any) =>
|
||||
r[f.id].map((e: any) => e.name).join().toUpperCase().includes(f.value.toUpperCase()),
|
||||
(r[f.id]
|
||||
? r[f.id].map((e: any) => e.name).join().toUpperCase().includes(f.value.toUpperCase())
|
||||
: null),
|
||||
sortable: false,
|
||||
Cell: (c: any) => c.value
|
||||
? <div className="fl-tag-container">
|
||||
|
|
|
|||
Loading…
Reference in a new issue