We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a24be2 commit 3e6523aCopy full SHA for 3e6523a
src/ListGroup.js
@@ -13,17 +13,11 @@ class ListGroup extends React.Component {
13
14
if (!this.props.children) {
15
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
21
} 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
- });
+ React.Children.forEach(this.props.children, (child) => {
+ if (this.isAnchor(child.props)) {
+ childrenAnchors = true;
+ }
27
28
});
29
0 commit comments