From 365d8d978070e87450c825c6a8ae76e044df1010 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 15 Sep 2018 22:13:46 -0500 Subject: [PATCH] don't show broken Updated filter box ref #378 --- .../ClientApp/modules/home/components/listsTable/ListsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/ListsTable.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/ListsTable.tsx index 7546bd6a0..e5c18967d 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/ListsTable.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/ListsTable.tsx @@ -122,7 +122,7 @@ export const ListsTable = (props: IProps) => { { Header: "Updated", accessor: "updatedDate", - filterable: true, + filterable: false, filterMethod: (f: any, r: any) => r[f.id].includes(f.value), sortMethod: (a: any, b: any) => moment(a).isValid() ? (moment(b).isValid() ? (moment(a).isBefore(b) ? -1 : 1) : 1) : -1,