From 71a98c5f3340a53ecfb398f2dad09ce7600a42a2 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Fri, 8 Jun 2018 14:44:58 -0500 Subject: [PATCH] tweaks to grid dates --- src/FilterLists.Web/ClientApp/components/Home.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/FilterLists.Web/ClientApp/components/Home.tsx b/src/FilterLists.Web/ClientApp/components/Home.tsx index 816dfdc50..dec916940 100644 --- a/src/FilterLists.Web/ClientApp/components/Home.tsx +++ b/src/FilterLists.Web/ClientApp/components/Home.tsx @@ -94,7 +94,7 @@ export class Home extends React.Component, IHomeState> { className: "d-none d-sm-block" }, { - Header: "Updated", + Header: "Crawled", accessor: "updatedDate", filterable: true, filterMethod: (filter: any, row: any) => row[filter.id].toUpperCase() @@ -102,7 +102,7 @@ export class Home extends React.Component, IHomeState> { sortMethod: (a: any, b: any) => a > b ? 1 : -1, Cell: (cell: any) =>
{moment(cell.value).isValid() ? moment(cell.value).format("M-D-YY") - : ""}
, + : "N/A"}, style: { whiteSpace: "inherit" }, width: 75, headerClassName: "d-none d-sm-block", @@ -117,7 +117,7 @@ export class Home extends React.Component, IHomeState> { sortMethod: (a: any, b: any) => a > b ? 1 : -1, Cell: (cell: any) =>
{moment(cell.value).isValid() ? moment(cell.value).format("M-D-YY") - : ""}
, + : "N/A"}, style: { whiteSpace: "inherit" }, width: 75, headerClassName: "d-none d-sm-block",