From 753f858764f6b53c98b4e644dd19b926490eef04 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Tue, 15 Oct 2019 11:26:45 +0300 Subject: [PATCH] Fixed #1045 - AutoComplete mode multiple ignores maxlength property --- src/components/autocomplete/AutoComplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/autocomplete/AutoComplete.js b/src/components/autocomplete/AutoComplete.js index 6f9950c804..99e34fb3d7 100644 --- a/src/components/autocomplete/AutoComplete.js +++ b/src/components/autocomplete/AutoComplete.js @@ -578,7 +578,7 @@ export class AutoComplete extends Component {
  • this.inputEl = el} type={this.props.type} disabled={this.props.disabled} placeholder={this.props.placeholder} autoComplete="off" tabIndex={this.props.tabindex} onChange={this.onInputChange} id={this.props.inputId} name={this.props.name} - style={this.props.inputStyle} className={this.props.inputClassName} + style={this.props.inputStyle} className={this.props.inputClassName} maxLength={this.props.maxlength} onKeyUp={this.props.onKeyUp} onKeyDown={this.onInputKeyDown} onKeyPress={this.props.onKeyPress} onFocus={this.onMultiInputFocus} onBlur={this.onMultiInputBlur} />