From 858491b4816aee9494a10a3eb6a67cd7085c8866 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 17 Feb 2018 10:19:40 -0600 Subject: [PATCH] fix a couple modal issues --- .../ClientApp/components/ListDetailsModal.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/FilterLists.Web/ClientApp/components/ListDetailsModal.tsx b/src/FilterLists.Web/ClientApp/components/ListDetailsModal.tsx index 5d2d56732..9f84a8c93 100644 --- a/src/FilterLists.Web/ClientApp/components/ListDetailsModal.tsx +++ b/src/FilterLists.Web/ClientApp/components/ListDetailsModal.tsx @@ -46,8 +46,7 @@ export default class ListDetailsModal extends React.Component { function FilterListDetails(props: any) { return
- + @@ -61,7 +60,7 @@ function Name(props: any) { function PublishedDate(props: any) { if (props.date) { - return

Published: props.date

; + return

Published: {props.date}

; } else { return null; } @@ -69,7 +68,7 @@ function PublishedDate(props: any) { function DiscontinuedDate(props: any) { if (props.date) { - return

Discontinued: props.date

; + return

Discontinued: {props.date}

; } else { return null; } @@ -88,8 +87,7 @@ function Description(props: any) { } function ViewUrl(props: any) { - return + return View ; }