diff --git a/src/card/card.jsx b/src/card/card.jsx index d4339911477107..11123940ecfc9e 100644 --- a/src/card/card.jsx +++ b/src/card/card.jsx @@ -31,7 +31,7 @@ const Card = React.createClass({ let newChild = undefined; let newProps = {}; let element = currentChild; - if (!currentChild) { + if (!currentChild || !currentChild.props) { return null; } if (this.state.expanded === false && currentChild.props.expandable === true)