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 ; }