Browse Source

fix React.cloneElement in component DescriptionList (#1428)

pull/1448/head
Liu Yue 8 years ago
committed by niko
parent
commit
abd2dd8d5a
  1. 2
      src/components/DescriptionList/DescriptionList.js

2
src/components/DescriptionList/DescriptionList.js

@ -22,7 +22,7 @@ const DescriptionList = ({
<div className={clsString} {...restProps}>
{title ? <div className={styles.title}>{title}</div> : null}
<Row gutter={gutter}>
{React.Children.map(children, child => React.cloneElement(child, { column }))}
{React.Children.map(children, child => child ? React.cloneElement(child, { column }) : child)}
</Row>
</div>
);

Loading…
Cancel
Save