From fa568daf2a328d2f6cd7cb9936cebbedabe67726 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Fri, 8 Jun 2018 11:16:14 -0500 Subject: [PATCH] add comma after day in moment dates --- 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 fd7ead540..d82bd8bf0 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 Y")}

    +

    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 Y")}

    +

    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 Y")}

    +

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

  • : null; }