From 2a1ab84d8eda3b65110b3c001419bc5b4894b852 Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Sat, 24 Mar 2018 10:15:57 -0500 Subject: [PATCH] de-dup language display in expander except on xs --- src/FilterLists.Web/ClientApp/components/ListDetails.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FilterLists.Web/ClientApp/components/ListDetails.tsx b/src/FilterLists.Web/ClientApp/components/ListDetails.tsx index ca4e71f83..e50cbda24 100644 --- a/src/FilterLists.Web/ClientApp/components/ListDetails.tsx +++ b/src/FilterLists.Web/ClientApp/components/ListDetails.tsx @@ -62,11 +62,11 @@ function Description(props: any) { function Languages(props: any) { return props.languages.length > 0 ? props.languages.length > 1 - ?
+ ?

Languages

{props.languages.join(", ")}

- :
+ :

Language

{props.languages.join(", ")}