We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53637b1 commit 9e1ada0Copy full SHA for 9e1ada0
2 files changed
src/ComboboxInput.jsx
@@ -36,6 +36,7 @@ export default React.createClass({
36
<input
37
{...this.props }
38
type='text'
39
+ autoComplete='off'
40
aria-disabled={this.props.disabled}
41
aria-readonly={this.props.readOnly}
42
className={this.props.className + ' rw-input'}
src/DropdownList.jsx
@@ -223,6 +223,7 @@ var DropdownList = React.createClass({
223
<div ref='filterWrapper' className='rw-filter-input'>
224
<span className='rw-select rw-btn'><i className='rw-i rw-i-search'/></span>
225
<input ref='filter' className='rw-input'
226
227
placeholder={_.result(messages.filterPlaceholder, this.props)}
228
value={this.props.searchTerm }
229
onChange={ e => notify(this.props.onSearch, e.target.value)}/>
0 commit comments