File tree 2 files changed +19
-3
lines changed
2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -46,23 +46,28 @@ class ListGroup extends React.Component {
46
46
) ;
47
47
48
48
return (
49
- < ul className = { classNames ( this . props . className , 'list-group' ) } >
49
+ < ul
50
+ { ...this . props }
51
+ className = { classNames ( this . props . className , 'list-group' ) } >
50
52
{ listItems }
51
53
</ ul >
52
54
) ;
53
55
}
54
56
55
57
renderDiv ( items ) {
56
58
return (
57
- < div className = { classNames ( this . props . className , 'list-group' ) } >
59
+ < div
60
+ { ...this . props }
61
+ className = { classNames ( this . props . className , 'list-group' ) } >
58
62
{ items }
59
63
</ div >
60
64
) ;
61
65
}
62
66
}
63
67
64
68
ListGroup . propTypes = {
65
- className : React . PropTypes . string
69
+ className : React . PropTypes . string ,
70
+ id : React . PropTypes . string
66
71
} ;
67
72
68
73
export default ListGroup ;
Original file line number Diff line number Diff line change @@ -136,4 +136,15 @@ describe('ListGroup', function () {
136
136
assert . ok ( ReactTestUtils . findRenderedDOMComponentWithClass ( instance , 'list-group' ) ) ;
137
137
} ) ;
138
138
139
+ it ( 'Should support an element id through "id" prop' , function ( ) {
140
+ let instance = ReactTestUtils . renderIntoDocument (
141
+ < ListGroup id = "testItem" >
142
+ < ListGroupItem > Child</ ListGroupItem >
143
+ </ ListGroup >
144
+ ) ;
145
+ assert . ok ( ReactTestUtils . findRenderedDOMComponentWithClass ( instance , 'list-group' ) ) ;
146
+ assert . equal ( React . findDOMNode ( instance ) . nodeName , 'UL' ) ;
147
+ assert . equal ( React . findDOMNode ( instance ) . id , 'testItem' ) ;
148
+ } ) ;
149
+
139
150
} ) ;
You can’t perform that action at this time.
0 commit comments