Skip to content

Commit

Permalink
Merge pull request #5 from jasonchangxo/fix/option-aria-labels
Browse files Browse the repository at this point in the history
Edits for testing
  • Loading branch information
jasonchangxo authored Sep 28, 2017
2 parents cf32668 + 253d612 commit 8a68e61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Option.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ var Option = function (_React$Component) {
{ className: className,
style: option.style,
role: 'option',
'aria-label': this.props.children,
'aria-label': 'this.props.children',
onMouseDown: this.handleMouseDown,
onMouseEnter: this.handleMouseEnter,
onMouseMove: this.handleMouseMove,
Expand All @@ -133,7 +133,7 @@ var Option = function (_React$Component) {
onTouchEnd: this.handleTouchEnd,
id: instancePrefix + '-option-' + optionIndex,
title: option.title },
this.props.children
'this.props.children'
);
}
}]);
Expand Down

0 comments on commit 8a68e61

Please sign in to comment.