Skip to content

Commit 8752754

Browse files
committed
[added] Add linkId prop to NavItem
1 parent 722969d commit 8752754

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/NavItem.js

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const NavItem = React.createClass({
66
mixins: [BootstrapMixin],
77

88
propTypes: {
9+
linkId: React.PropTypes.string,
910
onSelect: React.PropTypes.func,
1011
active: React.PropTypes.bool,
1112
disabled: React.PropTypes.bool,
@@ -26,6 +27,7 @@ const NavItem = React.createClass({
2627
render() {
2728
let {
2829
role,
30+
linkId,
2931
disabled,
3032
active,
3133
href,
@@ -43,6 +45,7 @@ const NavItem = React.createClass({
4345
href,
4446
title,
4547
target,
48+
id: linkId,
4649
onClick: this.handleClick,
4750
ref: 'anchor'
4851
};

0 commit comments

Comments
 (0)