diff --git a/src/ListGroupItem.js b/src/ListGroupItem.js index ebcac22482..221b1de2b6 100644 --- a/src/ListGroupItem.js +++ b/src/ListGroupItem.js @@ -65,7 +65,7 @@ const ListGroupItem = React.createClass({ type="button" {...this.props} className={classNames(this.props.className, classes)}> - {this.props.children} + {this.props.header ? this.renderStructuredContent() : this.props.children} ); },