Skip to content

Commit

Permalink
Merge pull request react-bootstrap#1367 from apkiernan/listGroupItem
Browse files Browse the repository at this point in the history
[fixed] react-bootstrap#1287 ListGroupItem with onClick and header properly display header
  • Loading branch information
taion committed Oct 1, 2015
2 parents 341cdb0 + 3d13dda commit 6b7bf4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ListGroupItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}
</button>
);
},
Expand Down

0 comments on commit 6b7bf4e

Please sign in to comment.