Give the search box field a name
Should fix https://github.com/vector-im/riot-web/issues/2462pull/21833/head
parent
c0b931a837
commit
a3ab59832e
|
@ -89,7 +89,7 @@ export default class DirectorySearchBox extends React.Component {
|
||||||
|
|
||||||
return <span className={classnames(searchbox_classes)}>
|
return <span className={classnames(searchbox_classes)}>
|
||||||
<div className="mx_DirectorySearchBox_container">
|
<div className="mx_DirectorySearchBox_container">
|
||||||
<input type="text" value={this.state.value}
|
<input type="text" name="dirsearch" value={this.state.value}
|
||||||
className="mx_DirectorySearchBox_input"
|
className="mx_DirectorySearchBox_input"
|
||||||
ref={this._collectInput}
|
ref={this._collectInput}
|
||||||
onChange={this._onChange} onKeyUp={this._onKeyUp}
|
onChange={this._onChange} onKeyUp={this._onKeyUp}
|
||||||
|
|
Loading…
Reference in New Issue