Allow autocorrection in textbox (#2730)
* remove autocorrect=off attribute from textbox, allowing word suggestion in android keyboards * autocomplete attribute is also involved for this keyboard feature
Этот коммит содержится в:
коммит произвёл
Joram Wilander
родитель
cb1f605f87
Коммит
b49dc28d7e
@@ -187,8 +187,6 @@ export default class Textbox extends React.Component {
|
|||||||
className={`form-control custom-textarea ${this.state.connection}`}
|
className={`form-control custom-textarea ${this.state.connection}`}
|
||||||
type='textarea'
|
type='textarea'
|
||||||
spellCheck='true'
|
spellCheck='true'
|
||||||
autoComplete='off'
|
|
||||||
autoCorrect='off'
|
|
||||||
maxLength={Constants.MAX_POST_LEN}
|
maxLength={Constants.MAX_POST_LEN}
|
||||||
placeholder={this.props.createMessage}
|
placeholder={this.props.createMessage}
|
||||||
value={this.props.messageText}
|
value={this.props.messageText}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user