diff --git a/src/components/DescriptionList/Description.js b/src/components/DescriptionList/Description.js index e024796e270f3b9747949bf139a6473ebb91583b..3e41c07173f868852899bccb5db79e8d58911520 100644 --- a/src/components/DescriptionList/Description.js +++ b/src/components/DescriptionList/Description.js @@ -10,7 +10,8 @@ const Description = ({ term, column, className, children, ...restProps }) => { return ( {term &&
{term}
} - {children &&
{children}
} + {children !== null && children !== undefined && +
{children}
} ); };