mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Circumventing autofill by using a textarea rather than an input type=text
This commit is contained in:
parent
0f73c4326e
commit
d1398b137a
@ -228,7 +228,7 @@ module.exports = React.createClass({
|
||||
);
|
||||
} else {
|
||||
query = (
|
||||
<input type="text"
|
||||
<textarea rows="1"
|
||||
id="textinput"
|
||||
ref="textinput"
|
||||
className="mx_ChatInviteDialog_input"
|
||||
@ -236,9 +236,8 @@ module.exports = React.createClass({
|
||||
placeholder={this.props.placeholder}
|
||||
defaultValue={this.props.value}
|
||||
autoFocus={this.props.focus}
|
||||
onKeyDown={this.onKeyDown}
|
||||
autoComplete="off"
|
||||
size="64"/>
|
||||
onKeyDown={this.onKeyDown}>
|
||||
</textarea>
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user