From 8f93fe1368a7cebffc1902619dd49af0757985c9 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 7 Aug 2019 15:19:04 -0500 Subject: [PATCH] handle lists with no tags --- .../src/modules/allListsTable/AllListsTable.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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}