From 4913595803375db69d8222c1807b0d99e081487d Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Thu, 27 Sep 2018 18:03:51 -0500 Subject: [PATCH] tidy InfoCard --- .../detailsExpander/infoCard/InfoCard.tsx | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/InfoCard.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/InfoCard.tsx index 43b4cc5ad..8b20834fa 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/InfoCard.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/infoCard/InfoCard.tsx @@ -26,25 +26,25 @@ interface IProps { updatedDate: string; }; -export const InfoCard = (props: IProps) => -
- -
- {props.syntax - ? props.syntax.supportedSoftware.map( - (s: ISyntaxSupportedSoftware, i: number) => - - ) - : null} -
- -
    - - - - - - - -
-
; \ No newline at end of file +export const InfoCard = (props: IProps) => +
+ +
+ {props.syntax + ? props.syntax.supportedSoftware.map( + (s: ISyntaxSupportedSoftware, i: number) => + + ) + : null} +
+ +
    + + + + + + + +
+
; \ No newline at end of file