Make emoji picker search placeholder localizable (#7294)

pull/21833/head
Kerry 2021-12-06 15:39:11 +01:00 committed by GitHub
parent 5e19009e02
commit eab028f2f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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}