File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
2
2
import keycode from 'keycode' ;
3
3
import classNames from 'classnames' ;
4
4
import RootCloseWrapper from 'react-overlays/lib/RootCloseWrapper' ;
5
-
5
+ import ValidComponentChildren from './utils/ValidComponentChildren' ;
6
6
import createChainedFunction from './utils/createChainedFunction' ;
7
7
8
8
class DropdownMenu extends React . Component {
@@ -77,7 +77,7 @@ class DropdownMenu extends React.Component {
77
77
}
78
78
79
79
render ( ) {
80
- const items = React . Children . map ( this . props . children , child => {
80
+ const items = ValidComponentChildren . map ( this . props . children , child => {
81
81
let {
82
82
children,
83
83
onKeyDown,
Original file line number Diff line number Diff line change @@ -76,6 +76,15 @@ describe('DropdownMenu', function() {
76
76
node . className . should . match ( / \b d r o p d o w n - m e n u - r i g h t \b / ) ;
77
77
} ) ;
78
78
79
+ it ( 'handles empty children' , function ( ) {
80
+ ReactTestUtils . renderIntoDocument (
81
+ < DropdownMenu pullRight >
82
+ < MenuItem > Item</ MenuItem >
83
+ { false && < MenuItem > Item 2</ MenuItem > }
84
+ </ DropdownMenu >
85
+ ) ;
86
+ } ) ;
87
+
79
88
describe ( 'focusable state' , function ( ) {
80
89
let focusableContainer ;
81
90
You can’t perform that action at this time.
0 commit comments