diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/ListsTable.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/ListsTable.tsx index 8eb82a412..ff069ea43 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/ListsTable.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/ListsTable.tsx @@ -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 ?