mirror of https://github.com/vector-im/riot-web
Make emoji picker search placeholder localizable (#7294)
parent
5e19009e02
commit
eab028f2f8
|
@ -63,7 +63,7 @@ class Search extends React.PureComponent<IProps> {
|
||||||
<input
|
<input
|
||||||
autoFocus
|
autoFocus
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Search"
|
placeholder={_t("Search")}
|
||||||
value={this.props.query}
|
value={this.props.query}
|
||||||
onChange={ev => this.props.onChange(ev.target.value)}
|
onChange={ev => this.props.onChange(ev.target.value)}
|
||||||
onKeyDown={this.onKeyDown}
|
onKeyDown={this.onKeyDown}
|
||||||
|
|
Loading…
Reference in New Issue