diff --git a/src/FilterLists.Web/ClientApp/components/Home.tsx b/src/FilterLists.Web/ClientApp/components/Home.tsx index c2c934a7e..816dfdc50 100644 --- a/src/FilterLists.Web/ClientApp/components/Home.tsx +++ b/src/FilterLists.Web/ClientApp/components/Home.tsx @@ -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",