From 253d612914f83b386f7d5ec0537a1a2e35518783 Mon Sep 17 00:00:00 2001 From: jasonchangxo Date: Thu, 28 Sep 2017 13:17:01 -0700 Subject: [PATCH] Edits for testing --- lib/Option.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Option.js b/lib/Option.js index d5bf70cbcd..bf34cbab67 100644 --- a/lib/Option.js +++ b/lib/Option.js @@ -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, @@ -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' ); } }]);