From 85a1ea09a0524913523dd132402f31b410429a9f Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Wed, 7 Aug 2019 12:20:43 -0500 Subject: [PATCH] stub software, language, and tag columns --- .../src/modules/allListsTable/AllListsTable.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx index 24b485c2a..8f7298019 100644 --- a/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx +++ b/src/FilterLists.Web.V2/src/modules/allListsTable/AllListsTable.tsx @@ -70,6 +70,18 @@ export class AllListsTable extends React.Component<{}, State> { title="Description" dataIndex={nameof("description")} render={(text: string) =>
{text}
} /> + + title="Software" + dataIndex={nameof("syntaxId")} + render={(text: string) =>
{text}
} /> + + title="Languages" + dataIndex={nameof("languageIds")} + render={(text: string) =>
{text}
} /> + + title="Tags" + dataIndex={nameof("tagIds")} + render={(text: string) =>
{text}
} /> title="Subscribe" dataIndex={nameof("viewUrl")} width={123}