From 8d3e44761d108fe055d0a4ac25828aa3d0198601 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 4 Sep 2018 06:29:38 -0500 Subject: [PATCH] widen software filter, allow name to overflow closes #430 --- src/FilterLists.Web/ClientApp/components/Home.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/FilterLists.Web/ClientApp/components/Home.tsx b/src/FilterLists.Web/ClientApp/components/Home.tsx index 2259d2d08..6f3d686e7 100644 --- a/src/FilterLists.Web/ClientApp/components/Home.tsx +++ b/src/FilterLists.Web/ClientApp/components/Home.tsx @@ -116,10 +116,11 @@ export class Home extends React.Component, IHomeState> { filterMethod: (filter: any, row: any) => row[filter.id].toUpperCase() .includes(filter.value.toUpperCase()), sortMethod: (a: any, b: any) => a.toUpperCase() > b.toUpperCase() ? 1 : -1, - Cell: (cell: any) =>

{cell.value}

+ Cell: (cell: any) =>

{cell.value}

, + style: { overflow: "visible" } }, { - Header: "Software", + Header: "Software Support", accessor: "softwareIds", filterable: true, filterMethod: (filter: any, row: any) => { @@ -138,7 +139,7 @@ export class Home extends React.Component, IHomeState> { , sortable: false, Cell: () => null, - width: 100, + width: 250, headerClassName: "d-none d-md-block", className: "d-none d-md-block" },