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); };