Skip to content

Commit 664b465

Browse files
author
Kenny Wang
committed
[fixed] id passthrough for MenuItem
1 parent b8e8615 commit 664b465

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/MenuItem.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export default class MenuItem extends React.Component {
4747
<SafeAnchor
4848
role='menuitem'
4949
tabIndex='-1'
50+
id={this.props.id}
5051
target={this.props.target}
5152
title={this.props.title}
5253
href={this.props.href || ''}
@@ -78,7 +79,11 @@ MenuItem.propTypes = {
7879
target: React.PropTypes.string,
7980
title: React.PropTypes.string,
8081
onKeyDown: React.PropTypes.func,
81-
onSelect: React.PropTypes.func
82+
onSelect: React.PropTypes.func,
83+
id: React.PropTypes.oneOfType([
84+
React.PropTypes.string,
85+
React.PropTypes.number
86+
])
8287
};
8388

8489
MenuItem.defaultProps = {

0 commit comments

Comments
 (0)