From fda189eef212c6a93febee8fb776768253345255 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 1 Oct 2018 13:11:59 -0500 Subject: [PATCH] bump default tag column width per #432 and #543 --- .../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 ef7de8f94..c0268fe6a 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: 220, + width: 260, show: columnVisibility.filter((c: IColumnVisibility) => c.column === "Tags")[0].visible } as Column); };