bump default tag column width

per #432 and #543
This commit is contained in:
Collin M. Barrett 2018-10-01 13:11:59 -05:00
parent 09644cefe5
commit fda189eef2

View file

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