Skip to content

Commit fef8984

Browse files
committed
[fixed] react-bootstrap#597 able to set ID on ListGroup
1 parent 779365c commit fef8984

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

src/ListGroup.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -46,23 +46,28 @@ class ListGroup extends React.Component {
4646
);
4747

4848
return (
49-
<ul className={classNames(this.props.className, 'list-group')}>
49+
<ul
50+
{...this.props}
51+
className={classNames(this.props.className, 'list-group')}>
5052
{listItems}
5153
</ul>
5254
);
5355
}
5456

5557
renderDiv(items) {
5658
return (
57-
<div className={classNames(this.props.className, 'list-group')}>
59+
<div
60+
{...this.props}
61+
className={classNames(this.props.className, 'list-group')}>
5862
{items}
5963
</div>
6064
);
6165
}
6266
}
6367

6468
ListGroup.propTypes = {
65-
className: React.PropTypes.string
69+
className: React.PropTypes.string,
70+
id: React.PropTypes.string
6671
};
6772

6873
export default ListGroup;

test/ListGroupSpec.js

+11
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,15 @@ describe('ListGroup', function () {
136136
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'list-group'));
137137
});
138138

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+
139150
});

0 commit comments

Comments
 (0)