Skip to content

Commit 3e6523a

Browse files
cassusJimmy Jia
authored and
Jimmy Jia
committed
[added] ListGroup supports iterator as child
Fixes react-bootstrap#935
1 parent 3a24be2 commit 3e6523a

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

src/ListGroup.js

+4-10
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,11 @@ class ListGroup extends React.Component {
1313

1414
if (!this.props.children) {
1515
return this.renderDiv(items);
16-
} else if (React.Children.count(this.props.children) === 1 && !Array.isArray(this.props.children)) {
17-
let child = this.props.children;
18-
19-
childrenAnchors = this.isAnchor(child.props);
20-
2116
} else {
22-
23-
childrenAnchors = Array.prototype.some.call(this.props.children, (child) => {
24-
return !Array.isArray(child) ? this.isAnchor(child.props) : Array.prototype.some.call(child, (subChild) => {
25-
return this.isAnchor(subChild.props);
26-
});
17+
React.Children.forEach(this.props.children, (child) => {
18+
if (this.isAnchor(child.props)) {
19+
childrenAnchors = true;
20+
}
2721

2822
});
2923

0 commit comments

Comments
 (0)