From 364ab28e7ce443dbd5094d22de878ce1529b42e8 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Fri, 8 Jun 2018 11:09:06 -0500 Subject: [PATCH] tweak moment date formatting --- src/FilterLists.Web/ClientApp/components/ListDetails.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/FilterLists.Web/ClientApp/components/ListDetails.tsx b/src/FilterLists.Web/ClientApp/components/ListDetails.tsx index fe0a148a5..fd7ead540 100644 --- a/src/FilterLists.Web/ClientApp/components/ListDetails.tsx +++ b/src/FilterLists.Web/ClientApp/components/ListDetails.tsx @@ -114,7 +114,7 @@ function RuleCount(props: any) { function DiscontinuedDate(props: any) { return props.date ?
  • -

    Discontinued: {moment(props.date).format("MMM. D YYYY")}

    +

    Discontinued: {moment(props.date).format("MMM D Y")}

  • : null; } @@ -122,7 +122,7 @@ function DiscontinuedDate(props: any) { function UpdatedDate(props: any) { return props.date ?
  • -

    Updated: {moment(props.date).format("MMM. D YYYY")}

    +

    Updated: {moment(props.date).format("MMM D Y")}

  • : null; } @@ -130,7 +130,7 @@ function UpdatedDate(props: any) { function PublishedDate(props: any) { return props.date ?
  • -

    Published: {moment(props.date).format("MMM. D YYYY")}

    +

    Published: {moment(props.date).format("MMM D Y")}

  • : null; }