From 4b60b715d9ff79da5a4c113b98e8f5b03f867f65 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 29 Sep 2018 18:42:31 -0500 Subject: [PATCH] bump Tags column default width --- .../modules/home/components/listsTable/columns/Tags.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/columns/Tags.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/columns/Tags.tsx index 3fa5f33a9..ef7de8f94 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/columns/Tags.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/columns/Tags.tsx @@ -14,7 +14,7 @@ export const Tags = (columnVisibility: IColumnVisibility[], tags: ITag[]) => { Filter: ({ onChange, filter }: any) => Filter({ onChange, filter }, tagsSorted), sortMethod: (a: number[], b: number[]) => sortMethod(a, b, tagsSorted), Cell: (c: any) => Cell(c.value, tagsSorted), - width: 215, + width: 220, show: columnVisibility.filter((c: IColumnVisibility) => c.column === "Tags")[0].visible } as Column); };