diff --git a/src/components/DescriptionList/DescriptionList.js b/src/components/DescriptionList/DescriptionList.js index 73ba989c0e06b4e4ef91c906a79b7f1f48e9ef10..382d7e85f0cbf04507d76cf40e40a586911e075b 100644 --- a/src/components/DescriptionList/DescriptionList.js +++ b/src/components/DescriptionList/DescriptionList.js @@ -22,7 +22,7 @@ const DescriptionList = ({
{title ?
{title}
: null} - {React.Children.map(children, child => React.cloneElement(child, { column }))} + {React.Children.map(children, child => child ? React.cloneElement(child, { column }) : child)}
);