diff --git a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx index cd267daf3..eea48f5b0 100644 --- a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx +++ b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx @@ -96,8 +96,9 @@ export class AllListsTable extends React.Component<{}, State> { title="Tags" dataIndex={nameof("tagIds")} + width={200} render={(tagIds: number[]) => - tagIds.includes(t.id))} />} /> + tagIds ? tagIds.includes(t.id))} /> : null} /> title="Subscribe" dataIndex={nameof("viewUrl")} width={123}