From d70a3ce2b550476b1f8a5aaf5a1e4914b80e8fbb Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Fri, 21 Sep 2018 20:37:50 -0500 Subject: [PATCH] fix maintainer add'l lists null check ref #505 --- .../maintainersInfoCard/MaintainerAdditionalLists.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/maintainersInfoCard/MaintainerAdditionalLists.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/maintainersInfoCard/MaintainerAdditionalLists.tsx index d8e3b743e..42dffeedf 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/maintainersInfoCard/MaintainerAdditionalLists.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpander/maintainersInfoCard/MaintainerAdditionalLists.tsx @@ -8,7 +8,7 @@ interface IProps { export const MaintainerAdditionalLists = (props: IProps) => { return
- {props.additionalLists.length > 0 + {props.additionalLists && props.additionalLists.length > 0 ?

More by {props.name}: