mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
tweak Maintainers col default width, adjust default visible columns
This commit is contained in:
parent
1934fa9a51
commit
580925460c
2 changed files with 3 additions and 3 deletions
|
|
@ -7,8 +7,8 @@ const columnVisibilityDefaults: IColumnVisibility[] = [
|
|||
{ column: "Software", visible: true },
|
||||
{ column: "Tags", visible: true },
|
||||
{ column: "Languages", visible: true },
|
||||
{ column: "Updated Date", visible: true },
|
||||
{ column: "Rule Count", visible: true }
|
||||
{ column: "Updated Date", visible: false },
|
||||
{ column: "Rule Count", visible: false }
|
||||
];
|
||||
|
||||
interface IProps {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ export const Maintainers = (columnVisibility: IColumnVisibility[], maintainers:
|
|||
filterMethod: (f: Filter, r: any[]) => filterMethod(f, r, maintainers),
|
||||
Filter: ({ filter, onChange }: any) => Filter({ onChange, filter }, maintainers),
|
||||
Cell: (c: any) => Cell(c.value, maintainers),
|
||||
width: 215,
|
||||
width: 140,
|
||||
headerClassName: "d-none d-md-block",
|
||||
className: "d-none d-md-block",
|
||||
show: columnVisibility.filter((c: IColumnVisibility) => c.column === "Maintainers")[0].visible
|
||||
|
|
|
|||
Loading…
Reference in a new issue