From a61124f5574bb6ecf6dd1e0534fccd6ac827ffc7 Mon Sep 17 00:00:00 2001 From: Nikolay Shevlyakov Date: Fri, 5 Feb 2016 10:37:44 +0300 Subject: [PATCH] fix russian b letter https://github.com/JedWatson/react-select/issues/345 --- src/Select.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Select.js b/src/Select.js index 0ef2c4e406..1c717c9e52 100644 --- a/src/Select.js +++ b/src/Select.js @@ -420,15 +420,15 @@ var Select = React.createClass({ this.focusNextOption(); break; - case 188: // , - if (this.props.allowCreate && this.props.multi) { - event.preventDefault(); - event.stopPropagation(); - this.selectFocusedOption(); - } else { - return; - } - break; + // case 188: // , + // if (this.props.allowCreate && this.props.multi) { + // event.preventDefault(); + // event.stopPropagation(); + // this.selectFocusedOption(); + // } else { + // return; + // } + // break; default: return; }