diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/UpdatedDate.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/UpdatedDate.tsx index ceee95543..346513248 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/UpdatedDate.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/UpdatedDate.tsx @@ -9,7 +9,7 @@ export const UpdatedDate = (props: IProps) => props.updatedDate ?
  • Updated: {moment(props.updatedDate).isValid() - ? moment(props.updatedDate).local().format("l") + ? moment(props.updatedDate).format("l").toLocaleString() : "N/A"}

  • : null;