diff --git a/web/src/components/listsTable/ListsTable.tsx b/web/src/components/listsTable/ListsTable.tsx index 597c863d7..97487bb47 100644 --- a/web/src/components/listsTable/ListsTable.tsx +++ b/web/src/components/listsTable/ListsTable.tsx @@ -206,10 +206,12 @@ export const ListsTable = (props: RouteComponentProps & Props) => { ) ), - value: s.id.toString(), + value: s.id, }))} onFilter={(value, record) => - record.syntaxIds ? record.syntaxIds.toString() === value : false + record.syntaxIds + ? record.syntaxIds.includes(value as number) + : false } render={(syntaxIds: number[]) => syntaxIds ? (